2 BlueZ - Bluetooth protocol stack for Linux
3 Copyright (C) 2000-2001 Qualcomm Incorporated
5 Written 2000,2001 by Maxim Krasnyansky <maxk@qualcomm.com>
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;
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.
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.
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)
35 #define HCI_DEV_UNREG 2
37 #define HCI_DEV_DOWN 4
38 #define HCI_DEV_SUSPEND 5
39 #define HCI_DEV_RESUME 6
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
55 /* HCI controller types */
56 #define HCI_BREDR 0x00
59 /* HCI device quirks */
63 HCI_QUIRK_FIXUP_BUFFER_SIZE
66 /* HCI device flags */
93 * BR/EDR and/or LE controller flags: the flags defined here should represent
94 * states from the controller.
100 /* HCI ioctl defines */
101 #define HCIDEVUP _IOW('H', 201, int)
102 #define HCIDEVDOWN _IOW('H', 202, int)
103 #define HCIDEVRESET _IOW('H', 203, int)
104 #define HCIDEVRESTAT _IOW('H', 204, int)
106 #define HCIGETDEVLIST _IOR('H', 210, int)
107 #define HCIGETDEVINFO _IOR('H', 211, int)
108 #define HCIGETCONNLIST _IOR('H', 212, int)
109 #define HCIGETCONNINFO _IOR('H', 213, int)
110 #define HCIGETAUTHINFO _IOR('H', 215, int)
112 #define HCISETRAW _IOW('H', 220, int)
113 #define HCISETSCAN _IOW('H', 221, int)
114 #define HCISETAUTH _IOW('H', 222, int)
115 #define HCISETENCRYPT _IOW('H', 223, int)
116 #define HCISETPTYPE _IOW('H', 224, int)
117 #define HCISETLINKPOL _IOW('H', 225, int)
118 #define HCISETLINKMODE _IOW('H', 226, int)
119 #define HCISETACLMTU _IOW('H', 227, int)
120 #define HCISETSCOMTU _IOW('H', 228, int)
122 #define HCIBLOCKADDR _IOW('H', 230, int)
123 #define HCIUNBLOCKADDR _IOW('H', 231, int)
125 #define HCIINQUIRY _IOR('H', 240, int)
128 #define HCI_CONNECT_TIMEOUT (40000) /* 40 seconds */
129 #define HCI_DISCONN_TIMEOUT (2000) /* 2 seconds */
130 #define HCI_PAIRING_TIMEOUT (60000) /* 60 seconds */
131 #define HCI_IDLE_TIMEOUT (6000) /* 6 seconds */
132 #define HCI_INIT_TIMEOUT (10000) /* 10 seconds */
133 #define HCI_CMD_TIMEOUT (1000) /* 1 seconds */
136 #define HCI_COMMAND_PKT 0x01
137 #define HCI_ACLDATA_PKT 0x02
138 #define HCI_SCODATA_PKT 0x03
139 #define HCI_EVENT_PKT 0x04
140 #define HCI_VENDOR_PKT 0xff
142 /* HCI packet types */
143 #define HCI_DM1 0x0008
144 #define HCI_DM3 0x0400
145 #define HCI_DM5 0x4000
146 #define HCI_DH1 0x0010
147 #define HCI_DH3 0x0800
148 #define HCI_DH5 0x8000
150 #define HCI_HV1 0x0020
151 #define HCI_HV2 0x0040
152 #define HCI_HV3 0x0080
154 #define SCO_PTYPE_MASK (HCI_HV1 | HCI_HV2 | HCI_HV3)
155 #define ACL_PTYPE_MASK (~SCO_PTYPE_MASK)
157 /* eSCO packet types */
158 #define ESCO_HV1 0x0001
159 #define ESCO_HV2 0x0002
160 #define ESCO_HV3 0x0004
161 #define ESCO_EV3 0x0008
162 #define ESCO_EV4 0x0010
163 #define ESCO_EV5 0x0020
164 #define ESCO_2EV3 0x0040
165 #define ESCO_3EV3 0x0080
166 #define ESCO_2EV5 0x0100
167 #define ESCO_3EV5 0x0200
169 #define SCO_ESCO_MASK (ESCO_HV1 | ESCO_HV2 | ESCO_HV3)
170 #define EDR_ESCO_MASK (ESCO_2EV3 | ESCO_3EV3 | ESCO_2EV5 | ESCO_3EV5)
173 #define ACL_START_NO_FLUSH 0x00
174 #define ACL_CONT 0x01
175 #define ACL_START 0x02
176 #define ACL_ACTIVE_BCAST 0x04
177 #define ACL_PICO_BCAST 0x08
180 #define SCO_LINK 0x00
181 #define ACL_LINK 0x01
182 #define ESCO_LINK 0x02
183 /* Low Energy links do not have defined link type. Use invented one */
187 #define LMP_3SLOT 0x01
188 #define LMP_5SLOT 0x02
189 #define LMP_ENCRYPT 0x04
190 #define LMP_SOFFSET 0x08
191 #define LMP_TACCURACY 0x10
192 #define LMP_RSWITCH 0x20
193 #define LMP_HOLD 0x40
194 #define LMP_SNIFF 0x80
196 #define LMP_PARK 0x01
197 #define LMP_RSSI 0x02
198 #define LMP_QUALITY 0x04
202 #define LMP_ULAW 0x40
203 #define LMP_ALAW 0x80
205 #define LMP_CVSD 0x01
206 #define LMP_PSCHEME 0x02
207 #define LMP_PCONTROL 0x04
209 #define LMP_RSSI_INQ 0x40
210 #define LMP_ESCO 0x80
214 #define LMP_NO_BREDR 0x20
217 #define LMP_SNIFF_SUBR 0x02
218 #define LMP_PAUSE_ENC 0x04
219 #define LMP_EDR_ESCO_2M 0x20
220 #define LMP_EDR_ESCO_3M 0x40
221 #define LMP_EDR_3S_ESCO 0x80
223 #define LMP_EXT_INQ 0x01
224 #define LMP_SIMUL_LE_BR 0x02
225 #define LMP_SIMPLE_PAIR 0x08
226 #define LMP_NO_FLUSH 0x40
228 #define LMP_LSTO 0x01
229 #define LMP_INQ_TX_PWR 0x02
230 #define LMP_EXTFEATURES 0x80
232 /* Extended LMP features */
233 #define LMP_HOST_LE 0x02
235 /* Connection modes */
236 #define HCI_CM_ACTIVE 0x0000
237 #define HCI_CM_HOLD 0x0001
238 #define HCI_CM_SNIFF 0x0002
239 #define HCI_CM_PARK 0x0003
242 #define HCI_LP_RSWITCH 0x0001
243 #define HCI_LP_HOLD 0x0002
244 #define HCI_LP_SNIFF 0x0004
245 #define HCI_LP_PARK 0x0008
248 #define HCI_LM_ACCEPT 0x8000
249 #define HCI_LM_MASTER 0x0001
250 #define HCI_LM_AUTH 0x0002
251 #define HCI_LM_ENCRYPT 0x0004
252 #define HCI_LM_TRUSTED 0x0008
253 #define HCI_LM_RELIABLE 0x0010
254 #define HCI_LM_SECURE 0x0020
256 /* Authentication types */
257 #define HCI_AT_NO_BONDING 0x00
258 #define HCI_AT_NO_BONDING_MITM 0x01
259 #define HCI_AT_DEDICATED_BONDING 0x02
260 #define HCI_AT_DEDICATED_BONDING_MITM 0x03
261 #define HCI_AT_GENERAL_BONDING 0x04
262 #define HCI_AT_GENERAL_BONDING_MITM 0x05
265 #define HCI_LK_COMBINATION 0x00
266 #define HCI_LK_LOCAL_UNIT 0x01
267 #define HCI_LK_REMOTE_UNIT 0x02
268 #define HCI_LK_DEBUG_COMBINATION 0x03
269 #define HCI_LK_UNAUTH_COMBINATION 0x04
270 #define HCI_LK_AUTH_COMBINATION 0x05
271 #define HCI_LK_CHANGED_COMBINATION 0x06
272 /* The spec doesn't define types for SMP keys */
273 #define HCI_LK_SMP_LTK 0x81
274 #define HCI_LK_SMP_IRK 0x82
275 #define HCI_LK_SMP_CSRK 0x83
277 /* ---- HCI Error Codes ---- */
278 #define HCI_ERROR_AUTH_FAILURE 0x05
279 #define HCI_ERROR_REJ_BAD_ADDR 0x0f
280 #define HCI_ERROR_REMOTE_USER_TERM 0x13
281 #define HCI_ERROR_LOCAL_HOST_TERM 0x16
282 #define HCI_ERROR_PAIRING_NOT_ALLOWED 0x18
284 /* Flow control modes */
285 #define HCI_FLOW_CTL_MODE_PACKET_BASED 0x00
286 #define HCI_FLOW_CTL_MODE_BLOCK_BASED 0x01
288 /* ----- HCI Commands ---- */
289 #define HCI_OP_NOP 0x0000
291 #define HCI_OP_INQUIRY 0x0401
292 struct hci_cp_inquiry
{
298 #define HCI_OP_INQUIRY_CANCEL 0x0402
300 #define HCI_OP_EXIT_PERIODIC_INQ 0x0404
302 #define HCI_OP_CREATE_CONN 0x0405
303 struct hci_cp_create_conn
{
312 #define HCI_OP_DISCONNECT 0x0406
313 struct hci_cp_disconnect
{
318 #define HCI_OP_ADD_SCO 0x0407
319 struct hci_cp_add_sco
{
324 #define HCI_OP_CREATE_CONN_CANCEL 0x0408
325 struct hci_cp_create_conn_cancel
{
329 #define HCI_OP_ACCEPT_CONN_REQ 0x0409
330 struct hci_cp_accept_conn_req
{
335 #define HCI_OP_REJECT_CONN_REQ 0x040a
336 struct hci_cp_reject_conn_req
{
341 #define HCI_OP_LINK_KEY_REPLY 0x040b
342 struct hci_cp_link_key_reply
{
347 #define HCI_OP_LINK_KEY_NEG_REPLY 0x040c
348 struct hci_cp_link_key_neg_reply
{
352 #define HCI_OP_PIN_CODE_REPLY 0x040d
353 struct hci_cp_pin_code_reply
{
358 struct hci_rp_pin_code_reply
{
363 #define HCI_OP_PIN_CODE_NEG_REPLY 0x040e
364 struct hci_cp_pin_code_neg_reply
{
367 struct hci_rp_pin_code_neg_reply
{
372 #define HCI_OP_CHANGE_CONN_PTYPE 0x040f
373 struct hci_cp_change_conn_ptype
{
378 #define HCI_OP_AUTH_REQUESTED 0x0411
379 struct hci_cp_auth_requested
{
383 #define HCI_OP_SET_CONN_ENCRYPT 0x0413
384 struct hci_cp_set_conn_encrypt
{
389 #define HCI_OP_CHANGE_CONN_LINK_KEY 0x0415
390 struct hci_cp_change_conn_link_key
{
394 #define HCI_OP_REMOTE_NAME_REQ 0x0419
395 struct hci_cp_remote_name_req
{
402 #define HCI_OP_REMOTE_NAME_REQ_CANCEL 0x041a
403 struct hci_cp_remote_name_req_cancel
{
407 #define HCI_OP_READ_REMOTE_FEATURES 0x041b
408 struct hci_cp_read_remote_features
{
412 #define HCI_OP_READ_REMOTE_EXT_FEATURES 0x041c
413 struct hci_cp_read_remote_ext_features
{
418 #define HCI_OP_READ_REMOTE_VERSION 0x041d
419 struct hci_cp_read_remote_version
{
423 #define HCI_OP_SETUP_SYNC_CONN 0x0428
424 struct hci_cp_setup_sync_conn
{
429 __le16 voice_setting
;
434 #define HCI_OP_ACCEPT_SYNC_CONN_REQ 0x0429
435 struct hci_cp_accept_sync_conn_req
{
440 __le16 content_format
;
445 #define HCI_OP_REJECT_SYNC_CONN_REQ 0x042a
446 struct hci_cp_reject_sync_conn_req
{
451 #define HCI_OP_IO_CAPABILITY_REPLY 0x042b
452 struct hci_cp_io_capability_reply
{
459 #define HCI_OP_USER_CONFIRM_REPLY 0x042c
460 struct hci_cp_user_confirm_reply
{
463 struct hci_rp_user_confirm_reply
{
468 #define HCI_OP_USER_CONFIRM_NEG_REPLY 0x042d
470 #define HCI_OP_USER_PASSKEY_REPLY 0x042e
471 struct hci_cp_user_passkey_reply
{
476 #define HCI_OP_USER_PASSKEY_NEG_REPLY 0x042f
478 #define HCI_OP_REMOTE_OOB_DATA_REPLY 0x0430
479 struct hci_cp_remote_oob_data_reply
{
485 #define HCI_OP_REMOTE_OOB_DATA_NEG_REPLY 0x0433
486 struct hci_cp_remote_oob_data_neg_reply
{
490 #define HCI_OP_IO_CAPABILITY_NEG_REPLY 0x0434
491 struct hci_cp_io_capability_neg_reply
{
496 #define HCI_OP_SNIFF_MODE 0x0803
497 struct hci_cp_sniff_mode
{
505 #define HCI_OP_EXIT_SNIFF_MODE 0x0804
506 struct hci_cp_exit_sniff_mode
{
510 #define HCI_OP_ROLE_DISCOVERY 0x0809
511 struct hci_cp_role_discovery
{
514 struct hci_rp_role_discovery
{
520 #define HCI_OP_SWITCH_ROLE 0x080b
521 struct hci_cp_switch_role
{
526 #define HCI_OP_READ_LINK_POLICY 0x080c
527 struct hci_cp_read_link_policy
{
530 struct hci_rp_read_link_policy
{
536 #define HCI_OP_WRITE_LINK_POLICY 0x080d
537 struct hci_cp_write_link_policy
{
541 struct hci_rp_write_link_policy
{
546 #define HCI_OP_READ_DEF_LINK_POLICY 0x080e
547 struct hci_rp_read_def_link_policy
{
552 #define HCI_OP_WRITE_DEF_LINK_POLICY 0x080f
553 struct hci_cp_write_def_link_policy
{
557 #define HCI_OP_SNIFF_SUBRATE 0x0811
558 struct hci_cp_sniff_subrate
{
561 __le16 min_remote_timeout
;
562 __le16 min_local_timeout
;
565 #define HCI_OP_SET_EVENT_MASK 0x0c01
566 struct hci_cp_set_event_mask
{
570 #define HCI_OP_RESET 0x0c03
572 #define HCI_OP_SET_EVENT_FLT 0x0c05
573 struct hci_cp_set_event_flt
{
580 #define HCI_FLT_CLEAR_ALL 0x00
581 #define HCI_FLT_INQ_RESULT 0x01
582 #define HCI_FLT_CONN_SETUP 0x02
584 /* CONN_SETUP Condition types */
585 #define HCI_CONN_SETUP_ALLOW_ALL 0x00
586 #define HCI_CONN_SETUP_ALLOW_CLASS 0x01
587 #define HCI_CONN_SETUP_ALLOW_BDADDR 0x02
589 /* CONN_SETUP Conditions */
590 #define HCI_CONN_SETUP_AUTO_OFF 0x01
591 #define HCI_CONN_SETUP_AUTO_ON 0x02
593 #define HCI_OP_DELETE_STORED_LINK_KEY 0x0c12
594 struct hci_cp_delete_stored_link_key
{
599 #define HCI_MAX_NAME_LENGTH 248
601 #define HCI_OP_WRITE_LOCAL_NAME 0x0c13
602 struct hci_cp_write_local_name
{
603 __u8 name
[HCI_MAX_NAME_LENGTH
];
606 #define HCI_OP_READ_LOCAL_NAME 0x0c14
607 struct hci_rp_read_local_name
{
609 __u8 name
[HCI_MAX_NAME_LENGTH
];
612 #define HCI_OP_WRITE_CA_TIMEOUT 0x0c16
614 #define HCI_OP_WRITE_PG_TIMEOUT 0x0c18
616 #define HCI_OP_WRITE_SCAN_ENABLE 0x0c1a
617 #define SCAN_DISABLED 0x00
618 #define SCAN_INQUIRY 0x01
619 #define SCAN_PAGE 0x02
621 #define HCI_OP_READ_AUTH_ENABLE 0x0c1f
623 #define HCI_OP_WRITE_AUTH_ENABLE 0x0c20
624 #define AUTH_DISABLED 0x00
625 #define AUTH_ENABLED 0x01
627 #define HCI_OP_READ_ENCRYPT_MODE 0x0c21
629 #define HCI_OP_WRITE_ENCRYPT_MODE 0x0c22
630 #define ENCRYPT_DISABLED 0x00
631 #define ENCRYPT_P2P 0x01
632 #define ENCRYPT_BOTH 0x02
634 #define HCI_OP_READ_CLASS_OF_DEV 0x0c23
635 struct hci_rp_read_class_of_dev
{
640 #define HCI_OP_WRITE_CLASS_OF_DEV 0x0c24
641 struct hci_cp_write_class_of_dev
{
645 #define HCI_OP_READ_VOICE_SETTING 0x0c25
646 struct hci_rp_read_voice_setting
{
648 __le16 voice_setting
;
651 #define HCI_OP_WRITE_VOICE_SETTING 0x0c26
652 struct hci_cp_write_voice_setting
{
653 __le16 voice_setting
;
656 #define HCI_OP_HOST_BUFFER_SIZE 0x0c33
657 struct hci_cp_host_buffer_size
{
664 #define HCI_OP_WRITE_INQUIRY_MODE 0x0c45
666 #define HCI_MAX_EIR_LENGTH 240
668 #define HCI_OP_WRITE_EIR 0x0c52
669 struct hci_cp_write_eir
{
671 uint8_t data
[HCI_MAX_EIR_LENGTH
];
674 #define HCI_OP_READ_SSP_MODE 0x0c55
675 struct hci_rp_read_ssp_mode
{
680 #define HCI_OP_WRITE_SSP_MODE 0x0c56
681 struct hci_cp_write_ssp_mode
{
685 #define HCI_OP_READ_LOCAL_OOB_DATA 0x0c57
686 struct hci_rp_read_local_oob_data
{
692 #define HCI_OP_READ_INQ_RSP_TX_POWER 0x0c58
694 #define HCI_OP_READ_FLOW_CONTROL_MODE 0x0c66
695 struct hci_rp_read_flow_control_mode
{
700 #define HCI_OP_WRITE_LE_HOST_SUPPORTED 0x0c6d
701 struct hci_cp_write_le_host_supported
{
706 #define HCI_OP_READ_LOCAL_VERSION 0x1001
707 struct hci_rp_read_local_version
{
716 #define HCI_OP_READ_LOCAL_COMMANDS 0x1002
717 struct hci_rp_read_local_commands
{
722 #define HCI_OP_READ_LOCAL_FEATURES 0x1003
723 struct hci_rp_read_local_features
{
728 #define HCI_OP_READ_LOCAL_EXT_FEATURES 0x1004
729 struct hci_cp_read_local_ext_features
{
732 struct hci_rp_read_local_ext_features
{
739 #define HCI_OP_READ_BUFFER_SIZE 0x1005
740 struct hci_rp_read_buffer_size
{
748 #define HCI_OP_READ_BD_ADDR 0x1009
749 struct hci_rp_read_bd_addr
{
754 #define HCI_OP_READ_DATA_BLOCK_SIZE 0x100a
755 struct hci_rp_read_data_block_size
{
762 #define HCI_OP_WRITE_PAGE_SCAN_ACTIVITY 0x0c1c
763 struct hci_cp_write_page_scan_activity
{
768 #define HCI_OP_WRITE_PAGE_SCAN_TYPE 0x0c47
769 #define PAGE_SCAN_TYPE_STANDARD 0x00
770 #define PAGE_SCAN_TYPE_INTERLACED 0x01
772 #define HCI_OP_READ_LOCAL_AMP_INFO 0x1409
773 struct hci_rp_read_local_amp_info
{
782 __le16 max_assoc_size
;
787 #define HCI_OP_LE_SET_EVENT_MASK 0x2001
788 struct hci_cp_le_set_event_mask
{
792 #define HCI_OP_LE_READ_BUFFER_SIZE 0x2002
793 struct hci_rp_le_read_buffer_size
{
799 #define HCI_OP_LE_SET_SCAN_PARAM 0x200b
800 struct hci_cp_le_set_scan_param
{
804 __u8 own_address_type
;
808 #define LE_SCANNING_DISABLED 0x00
809 #define LE_SCANNING_ENABLED 0x01
811 #define HCI_OP_LE_SET_SCAN_ENABLE 0x200c
812 struct hci_cp_le_set_scan_enable
{
817 #define HCI_OP_LE_CREATE_CONN 0x200d
818 struct hci_cp_le_create_conn
{
819 __le16 scan_interval
;
824 __u8 own_address_type
;
825 __le16 conn_interval_min
;
826 __le16 conn_interval_max
;
828 __le16 supervision_timeout
;
833 #define HCI_OP_LE_CREATE_CONN_CANCEL 0x200e
835 #define HCI_OP_LE_CONN_UPDATE 0x2013
836 struct hci_cp_le_conn_update
{
838 __le16 conn_interval_min
;
839 __le16 conn_interval_max
;
841 __le16 supervision_timeout
;
846 #define HCI_OP_LE_START_ENC 0x2019
847 struct hci_cp_le_start_enc
{
854 #define HCI_OP_LE_LTK_REPLY 0x201a
855 struct hci_cp_le_ltk_reply
{
859 struct hci_rp_le_ltk_reply
{
864 #define HCI_OP_LE_LTK_NEG_REPLY 0x201b
865 struct hci_cp_le_ltk_neg_reply
{
868 struct hci_rp_le_ltk_neg_reply
{
873 /* ---- HCI Events ---- */
874 #define HCI_EV_INQUIRY_COMPLETE 0x01
876 #define HCI_EV_INQUIRY_RESULT 0x02
877 struct inquiry_info
{
880 __u8 pscan_period_mode
;
886 #define HCI_EV_CONN_COMPLETE 0x03
887 struct hci_ev_conn_complete
{
895 #define HCI_EV_CONN_REQUEST 0x04
896 struct hci_ev_conn_request
{
902 #define HCI_EV_DISCONN_COMPLETE 0x05
903 struct hci_ev_disconn_complete
{
909 #define HCI_EV_AUTH_COMPLETE 0x06
910 struct hci_ev_auth_complete
{
915 #define HCI_EV_REMOTE_NAME 0x07
916 struct hci_ev_remote_name
{
919 __u8 name
[HCI_MAX_NAME_LENGTH
];
922 #define HCI_EV_ENCRYPT_CHANGE 0x08
923 struct hci_ev_encrypt_change
{
929 #define HCI_EV_CHANGE_LINK_KEY_COMPLETE 0x09
930 struct hci_ev_change_link_key_complete
{
935 #define HCI_EV_REMOTE_FEATURES 0x0b
936 struct hci_ev_remote_features
{
942 #define HCI_EV_REMOTE_VERSION 0x0c
943 struct hci_ev_remote_version
{
951 #define HCI_EV_QOS_SETUP_COMPLETE 0x0d
955 __u32 peak_bandwidth
;
957 __u32 delay_variation
;
959 struct hci_ev_qos_setup_complete
{
965 #define HCI_EV_CMD_COMPLETE 0x0e
966 struct hci_ev_cmd_complete
{
971 #define HCI_EV_CMD_STATUS 0x0f
972 struct hci_ev_cmd_status
{
978 #define HCI_EV_ROLE_CHANGE 0x12
979 struct hci_ev_role_change
{
985 #define HCI_EV_NUM_COMP_PKTS 0x13
986 struct hci_comp_pkts_info
{
991 struct hci_ev_num_comp_pkts
{
993 struct hci_comp_pkts_info handles
[0];
996 #define HCI_EV_MODE_CHANGE 0x14
997 struct hci_ev_mode_change
{
1004 #define HCI_EV_PIN_CODE_REQ 0x16
1005 struct hci_ev_pin_code_req
{
1009 #define HCI_EV_LINK_KEY_REQ 0x17
1010 struct hci_ev_link_key_req
{
1014 #define HCI_EV_LINK_KEY_NOTIFY 0x18
1015 struct hci_ev_link_key_notify
{
1021 #define HCI_EV_CLOCK_OFFSET 0x1c
1022 struct hci_ev_clock_offset
{
1025 __le16 clock_offset
;
1028 #define HCI_EV_PKT_TYPE_CHANGE 0x1d
1029 struct hci_ev_pkt_type_change
{
1035 #define HCI_EV_PSCAN_REP_MODE 0x20
1036 struct hci_ev_pscan_rep_mode
{
1038 __u8 pscan_rep_mode
;
1041 #define HCI_EV_INQUIRY_RESULT_WITH_RSSI 0x22
1042 struct inquiry_info_with_rssi
{
1044 __u8 pscan_rep_mode
;
1045 __u8 pscan_period_mode
;
1047 __le16 clock_offset
;
1050 struct inquiry_info_with_rssi_and_pscan_mode
{
1052 __u8 pscan_rep_mode
;
1053 __u8 pscan_period_mode
;
1056 __le16 clock_offset
;
1060 #define HCI_EV_REMOTE_EXT_FEATURES 0x23
1061 struct hci_ev_remote_ext_features
{
1069 #define HCI_EV_SYNC_CONN_COMPLETE 0x2c
1070 struct hci_ev_sync_conn_complete
{
1076 __u8 retrans_window
;
1082 #define HCI_EV_SYNC_CONN_CHANGED 0x2d
1083 struct hci_ev_sync_conn_changed
{
1087 __u8 retrans_window
;
1092 #define HCI_EV_SNIFF_SUBRATE 0x2e
1093 struct hci_ev_sniff_subrate
{
1096 __le16 max_tx_latency
;
1097 __le16 max_rx_latency
;
1098 __le16 max_remote_timeout
;
1099 __le16 max_local_timeout
;
1102 #define HCI_EV_EXTENDED_INQUIRY_RESULT 0x2f
1103 struct extended_inquiry_info
{
1105 __u8 pscan_rep_mode
;
1106 __u8 pscan_period_mode
;
1108 __le16 clock_offset
;
1113 #define HCI_EV_IO_CAPA_REQUEST 0x31
1114 struct hci_ev_io_capa_request
{
1118 #define HCI_EV_IO_CAPA_REPLY 0x32
1119 struct hci_ev_io_capa_reply
{
1123 __u8 authentication
;
1126 #define HCI_EV_USER_CONFIRM_REQUEST 0x33
1127 struct hci_ev_user_confirm_req
{
1132 #define HCI_EV_USER_PASSKEY_REQUEST 0x34
1133 struct hci_ev_user_passkey_req
{
1137 #define HCI_EV_REMOTE_OOB_DATA_REQUEST 0x35
1138 struct hci_ev_remote_oob_data_request
{
1142 #define HCI_EV_SIMPLE_PAIR_COMPLETE 0x36
1143 struct hci_ev_simple_pair_complete
{
1148 #define HCI_EV_REMOTE_HOST_FEATURES 0x3d
1149 struct hci_ev_remote_host_features
{
1154 #define HCI_EV_LE_META 0x3e
1155 struct hci_ev_le_meta
{
1159 /* Low energy meta events */
1160 #define HCI_EV_LE_CONN_COMPLETE 0x01
1161 struct hci_ev_le_conn_complete
{
1169 __le16 supervision_timeout
;
1173 #define HCI_EV_LE_LTK_REQ 0x05
1174 struct hci_ev_le_ltk_req
{
1180 /* Advertising report event types */
1181 #define ADV_IND 0x00
1182 #define ADV_DIRECT_IND 0x01
1183 #define ADV_SCAN_IND 0x02
1184 #define ADV_NONCONN_IND 0x03
1185 #define ADV_SCAN_RSP 0x04
1187 #define ADDR_LE_DEV_PUBLIC 0x00
1188 #define ADDR_LE_DEV_RANDOM 0x01
1190 #define HCI_EV_LE_ADVERTISING_REPORT 0x02
1191 struct hci_ev_le_advertising_info
{
1199 /* Internal events generated by Bluetooth stack */
1200 #define HCI_EV_STACK_INTERNAL 0xfd
1201 struct hci_ev_stack_internal
{
1206 #define HCI_EV_SI_DEVICE 0x01
1207 struct hci_ev_si_device
{
1212 #define HCI_EV_SI_SECURITY 0x02
1213 struct hci_ev_si_security
{
1220 /* ---- HCI Packet structures ---- */
1221 #define HCI_COMMAND_HDR_SIZE 3
1222 #define HCI_EVENT_HDR_SIZE 2
1223 #define HCI_ACL_HDR_SIZE 4
1224 #define HCI_SCO_HDR_SIZE 3
1226 struct hci_command_hdr
{
1227 __le16 opcode
; /* OCF & OGF */
1231 struct hci_event_hdr
{
1236 struct hci_acl_hdr
{
1237 __le16 handle
; /* Handle & Flags(PB, BC) */
1241 struct hci_sco_hdr
{
1246 #include <linux/skbuff.h>
1247 static inline struct hci_event_hdr
*hci_event_hdr(const struct sk_buff
*skb
)
1249 return (struct hci_event_hdr
*) skb
->data
;
1252 static inline struct hci_acl_hdr
*hci_acl_hdr(const struct sk_buff
*skb
)
1254 return (struct hci_acl_hdr
*) skb
->data
;
1257 static inline struct hci_sco_hdr
*hci_sco_hdr(const struct sk_buff
*skb
)
1259 return (struct hci_sco_hdr
*) skb
->data
;
1262 /* Command opcode pack/unpack */
1263 #define hci_opcode_pack(ogf, ocf) (__u16) ((ocf & 0x03ff)|(ogf << 10))
1264 #define hci_opcode_ogf(op) (op >> 10)
1265 #define hci_opcode_ocf(op) (op & 0x03ff)
1267 /* ACL handle and flags pack/unpack */
1268 #define hci_handle_pack(h, f) (__u16) ((h & 0x0fff)|(f << 12))
1269 #define hci_handle(h) (h & 0x0fff)
1270 #define hci_flags(h) (h >> 12)
1272 /* ---- HCI Sockets ---- */
1274 /* Socket options */
1275 #define HCI_DATA_DIR 1
1276 #define HCI_FILTER 2
1277 #define HCI_TIME_STAMP 3
1280 #define HCI_CMSG_DIR 0x0001
1281 #define HCI_CMSG_TSTAMP 0x0002
1283 struct sockaddr_hci
{
1284 sa_family_t hci_family
;
1285 unsigned short hci_dev
;
1286 unsigned short hci_channel
;
1288 #define HCI_DEV_NONE 0xffff
1290 #define HCI_CHANNEL_RAW 0
1291 #define HCI_CHANNEL_CONTROL 1
1294 unsigned long type_mask
;
1295 unsigned long event_mask
[2];
1299 struct hci_ufilter
{
1301 __u32 event_mask
[2];
1305 #define HCI_FLT_TYPE_BITS 31
1306 #define HCI_FLT_EVENT_BITS 63
1307 #define HCI_FLT_OGF_BITS 63
1308 #define HCI_FLT_OCF_BITS 127
1310 /* ---- HCI Ioctl requests structures ---- */
1311 struct hci_dev_stats
{
1324 struct hci_dev_info
{
1344 struct hci_dev_stats stat
;
1347 struct hci_conn_info
{
1356 struct hci_dev_req
{
1361 struct hci_dev_list_req
{
1363 struct hci_dev_req dev_req
[0]; /* hci_dev_req structures */
1366 struct hci_conn_list_req
{
1369 struct hci_conn_info conn_info
[0];
1372 struct hci_conn_info_req
{
1375 struct hci_conn_info conn_info
[0];
1378 struct hci_auth_info_req
{
1383 struct hci_inquiry_req
{
1390 #define IREQ_CACHE_FLUSH 0x0001
1392 extern bool enable_hs
;
1394 #endif /* __HCI_H */