11da177e4SLinus Torvalds /* 21da177e4SLinus Torvalds BlueZ - Bluetooth protocol stack for Linux 31da177e4SLinus Torvalds Copyright (C) 2000-2001 Qualcomm Incorporated 41da177e4SLinus Torvalds 51da177e4SLinus Torvalds Written 2000,2001 by Maxim Krasnyansky <maxk@qualcomm.com> 61da177e4SLinus Torvalds 71da177e4SLinus Torvalds This program is free software; you can redistribute it and/or modify 81da177e4SLinus Torvalds it under the terms of the GNU General Public License version 2 as 91da177e4SLinus Torvalds published by the Free Software Foundation; 101da177e4SLinus Torvalds 111da177e4SLinus Torvalds THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 121da177e4SLinus Torvalds OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 131da177e4SLinus Torvalds FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. 141da177e4SLinus Torvalds IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) AND AUTHOR(S) BE LIABLE FOR ANY 151da177e4SLinus Torvalds CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES 161da177e4SLinus Torvalds WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN 171da177e4SLinus Torvalds ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF 181da177e4SLinus Torvalds OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 191da177e4SLinus Torvalds 201da177e4SLinus Torvalds ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS, 211da177e4SLinus Torvalds COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS 221da177e4SLinus Torvalds SOFTWARE IS DISCLAIMED. 231da177e4SLinus Torvalds */ 241da177e4SLinus Torvalds 251da177e4SLinus Torvalds #ifndef __HCI_H 261da177e4SLinus Torvalds #define __HCI_H 271da177e4SLinus Torvalds 281da177e4SLinus Torvalds #define HCI_MAX_ACL_SIZE 1024 291da177e4SLinus Torvalds #define HCI_MAX_SCO_SIZE 255 301da177e4SLinus Torvalds #define HCI_MAX_EVENT_SIZE 260 311da177e4SLinus Torvalds #define HCI_MAX_FRAME_SIZE (HCI_MAX_ACL_SIZE + 4) 321da177e4SLinus Torvalds 331da177e4SLinus Torvalds /* HCI dev events */ 341da177e4SLinus Torvalds #define HCI_DEV_REG 1 351da177e4SLinus Torvalds #define HCI_DEV_UNREG 2 361da177e4SLinus Torvalds #define HCI_DEV_UP 3 371da177e4SLinus Torvalds #define HCI_DEV_DOWN 4 381da177e4SLinus Torvalds #define HCI_DEV_SUSPEND 5 391da177e4SLinus Torvalds #define HCI_DEV_RESUME 6 401da177e4SLinus Torvalds 411da177e4SLinus Torvalds /* HCI notify events */ 421da177e4SLinus Torvalds #define HCI_NOTIFY_CONN_ADD 1 431da177e4SLinus Torvalds #define HCI_NOTIFY_CONN_DEL 2 441da177e4SLinus Torvalds #define HCI_NOTIFY_VOICE_SETTING 3 451da177e4SLinus Torvalds 46c13854ceSMarcel Holtmann /* HCI bus types */ 470ac53939SMarcel Holtmann #define HCI_VIRTUAL 0 481da177e4SLinus Torvalds #define HCI_USB 1 491da177e4SLinus Torvalds #define HCI_PCCARD 2 501da177e4SLinus Torvalds #define HCI_UART 3 511da177e4SLinus Torvalds #define HCI_RS232 4 521da177e4SLinus Torvalds #define HCI_PCI 5 530ac53939SMarcel Holtmann #define HCI_SDIO 6 541da177e4SLinus Torvalds 55943da25dSMarcel Holtmann /* HCI controller types */ 56943da25dSMarcel Holtmann #define HCI_BREDR 0x00 578f1e1742SDavid Vrabel #define HCI_AMP 0x01 58943da25dSMarcel Holtmann 591da177e4SLinus Torvalds /* HCI device quirks */ 601da177e4SLinus Torvalds enum { 617a9d4020SMarcel Holtmann HCI_QUIRK_NO_RESET, 62da1f5198SMarcel Holtmann HCI_QUIRK_RAW_DEVICE, 63da1f5198SMarcel Holtmann HCI_QUIRK_FIXUP_BUFFER_SIZE 641da177e4SLinus Torvalds }; 651da177e4SLinus Torvalds 661da177e4SLinus Torvalds /* HCI device flags */ 671da177e4SLinus Torvalds enum { 681da177e4SLinus Torvalds HCI_UP, 691da177e4SLinus Torvalds HCI_INIT, 701da177e4SLinus Torvalds HCI_RUNNING, 711da177e4SLinus Torvalds 721da177e4SLinus Torvalds HCI_PSCAN, 731da177e4SLinus Torvalds HCI_ISCAN, 741da177e4SLinus Torvalds HCI_AUTH, 751da177e4SLinus Torvalds HCI_ENCRYPT, 761da177e4SLinus Torvalds HCI_INQUIRY, 771da177e4SLinus Torvalds 781da177e4SLinus Torvalds HCI_RAW, 79ab81cbf9SJohan Hedberg 80ab81cbf9SJohan Hedberg HCI_SETUP, 81ab81cbf9SJohan Hedberg HCI_AUTO_OFF, 82ebc99febSJohan Hedberg HCI_MGMT, 83c542a06cSJohan Hedberg HCI_PAIRABLE, 841aff6f09SJohan Hedberg HCI_SERVICE_CACHE, 8555ed8ca1SJohan Hedberg HCI_LINK_KEYS, 8655ed8ca1SJohan Hedberg HCI_DEBUG_KEYS, 871da177e4SLinus Torvalds }; 881da177e4SLinus Torvalds 891da177e4SLinus Torvalds /* HCI ioctl defines */ 901da177e4SLinus Torvalds #define HCIDEVUP _IOW('H', 201, int) 911da177e4SLinus Torvalds #define HCIDEVDOWN _IOW('H', 202, int) 921da177e4SLinus Torvalds #define HCIDEVRESET _IOW('H', 203, int) 931da177e4SLinus Torvalds #define HCIDEVRESTAT _IOW('H', 204, int) 941da177e4SLinus Torvalds 951da177e4SLinus Torvalds #define HCIGETDEVLIST _IOR('H', 210, int) 961da177e4SLinus Torvalds #define HCIGETDEVINFO _IOR('H', 211, int) 971da177e4SLinus Torvalds #define HCIGETCONNLIST _IOR('H', 212, int) 981da177e4SLinus Torvalds #define HCIGETCONNINFO _IOR('H', 213, int) 9940be492fSMarcel Holtmann #define HCIGETAUTHINFO _IOR('H', 215, int) 1001da177e4SLinus Torvalds 1011da177e4SLinus Torvalds #define HCISETRAW _IOW('H', 220, int) 1021da177e4SLinus Torvalds #define HCISETSCAN _IOW('H', 221, int) 1031da177e4SLinus Torvalds #define HCISETAUTH _IOW('H', 222, int) 1041da177e4SLinus Torvalds #define HCISETENCRYPT _IOW('H', 223, int) 1051da177e4SLinus Torvalds #define HCISETPTYPE _IOW('H', 224, int) 1061da177e4SLinus Torvalds #define HCISETLINKPOL _IOW('H', 225, int) 1071da177e4SLinus Torvalds #define HCISETLINKMODE _IOW('H', 226, int) 1081da177e4SLinus Torvalds #define HCISETACLMTU _IOW('H', 227, int) 1091da177e4SLinus Torvalds #define HCISETSCOMTU _IOW('H', 228, int) 1101da177e4SLinus Torvalds 111f0358568SJohan Hedberg #define HCIBLOCKADDR _IOW('H', 230, int) 112f0358568SJohan Hedberg #define HCIUNBLOCKADDR _IOW('H', 231, int) 113f0358568SJohan Hedberg 1141da177e4SLinus Torvalds #define HCIINQUIRY _IOR('H', 240, int) 1151da177e4SLinus Torvalds 1161da177e4SLinus Torvalds /* HCI timeouts */ 11704837f64SMarcel Holtmann #define HCI_CONNECT_TIMEOUT (40000) /* 40 seconds */ 11804837f64SMarcel Holtmann #define HCI_DISCONN_TIMEOUT (2000) /* 2 seconds */ 119052b30b0SMarcel Holtmann #define HCI_PAIRING_TIMEOUT (60000) /* 60 seconds */ 12004837f64SMarcel Holtmann #define HCI_IDLE_TIMEOUT (6000) /* 6 seconds */ 12104837f64SMarcel Holtmann #define HCI_INIT_TIMEOUT (10000) /* 10 seconds */ 1221da177e4SLinus Torvalds 1235b7f9909SMarcel Holtmann /* HCI data types */ 1241da177e4SLinus Torvalds #define HCI_COMMAND_PKT 0x01 1251da177e4SLinus Torvalds #define HCI_ACLDATA_PKT 0x02 1261da177e4SLinus Torvalds #define HCI_SCODATA_PKT 0x03 1271da177e4SLinus Torvalds #define HCI_EVENT_PKT 0x04 1281da177e4SLinus Torvalds #define HCI_VENDOR_PKT 0xff 1291da177e4SLinus Torvalds 1305b7f9909SMarcel Holtmann /* HCI packet types */ 1311da177e4SLinus Torvalds #define HCI_DM1 0x0008 1321da177e4SLinus Torvalds #define HCI_DM3 0x0400 1331da177e4SLinus Torvalds #define HCI_DM5 0x4000 1341da177e4SLinus Torvalds #define HCI_DH1 0x0010 1351da177e4SLinus Torvalds #define HCI_DH3 0x0800 1361da177e4SLinus Torvalds #define HCI_DH5 0x8000 1371da177e4SLinus Torvalds 1381da177e4SLinus Torvalds #define HCI_HV1 0x0020 1391da177e4SLinus Torvalds #define HCI_HV2 0x0040 1401da177e4SLinus Torvalds #define HCI_HV3 0x0080 1411da177e4SLinus Torvalds 1421da177e4SLinus Torvalds #define SCO_PTYPE_MASK (HCI_HV1 | HCI_HV2 | HCI_HV3) 1431da177e4SLinus Torvalds #define ACL_PTYPE_MASK (~SCO_PTYPE_MASK) 1441da177e4SLinus Torvalds 1455b7f9909SMarcel Holtmann /* eSCO packet types */ 1465b7f9909SMarcel Holtmann #define ESCO_HV1 0x0001 1475b7f9909SMarcel Holtmann #define ESCO_HV2 0x0002 1485b7f9909SMarcel Holtmann #define ESCO_HV3 0x0004 1495b7f9909SMarcel Holtmann #define ESCO_EV3 0x0008 1505b7f9909SMarcel Holtmann #define ESCO_EV4 0x0010 1515b7f9909SMarcel Holtmann #define ESCO_EV5 0x0020 152efc7688bSMarcel Holtmann #define ESCO_2EV3 0x0040 153efc7688bSMarcel Holtmann #define ESCO_3EV3 0x0080 154efc7688bSMarcel Holtmann #define ESCO_2EV5 0x0100 155efc7688bSMarcel Holtmann #define ESCO_3EV5 0x0200 1565b7f9909SMarcel Holtmann 157a8746417SMarcel Holtmann #define SCO_ESCO_MASK (ESCO_HV1 | ESCO_HV2 | ESCO_HV3) 158efc7688bSMarcel Holtmann #define EDR_ESCO_MASK (ESCO_2EV3 | ESCO_3EV3 | ESCO_2EV5 | ESCO_3EV5) 159a8746417SMarcel Holtmann 1601da177e4SLinus Torvalds /* ACL flags */ 161e702112fSAndrei Emeltchenko #define ACL_START_NO_FLUSH 0x00 1621da177e4SLinus Torvalds #define ACL_CONT 0x01 1631da177e4SLinus Torvalds #define ACL_START 0x02 1641da177e4SLinus Torvalds #define ACL_ACTIVE_BCAST 0x04 1651da177e4SLinus Torvalds #define ACL_PICO_BCAST 0x08 1661da177e4SLinus Torvalds 1671da177e4SLinus Torvalds /* Baseband links */ 1681da177e4SLinus Torvalds #define SCO_LINK 0x00 1691da177e4SLinus Torvalds #define ACL_LINK 0x01 1705b7f9909SMarcel Holtmann #define ESCO_LINK 0x02 1711da177e4SLinus Torvalds 1721da177e4SLinus Torvalds /* LMP features */ 1731da177e4SLinus Torvalds #define LMP_3SLOT 0x01 1741da177e4SLinus Torvalds #define LMP_5SLOT 0x02 1751da177e4SLinus Torvalds #define LMP_ENCRYPT 0x04 1761da177e4SLinus Torvalds #define LMP_SOFFSET 0x08 1771da177e4SLinus Torvalds #define LMP_TACCURACY 0x10 1781da177e4SLinus Torvalds #define LMP_RSWITCH 0x20 1791da177e4SLinus Torvalds #define LMP_HOLD 0x40 18004837f64SMarcel Holtmann #define LMP_SNIFF 0x80 1811da177e4SLinus Torvalds 1821da177e4SLinus Torvalds #define LMP_PARK 0x01 1831da177e4SLinus Torvalds #define LMP_RSSI 0x02 1841da177e4SLinus Torvalds #define LMP_QUALITY 0x04 1851da177e4SLinus Torvalds #define LMP_SCO 0x08 1861da177e4SLinus Torvalds #define LMP_HV2 0x10 1871da177e4SLinus Torvalds #define LMP_HV3 0x20 1881da177e4SLinus Torvalds #define LMP_ULAW 0x40 1891da177e4SLinus Torvalds #define LMP_ALAW 0x80 1901da177e4SLinus Torvalds 1911da177e4SLinus Torvalds #define LMP_CVSD 0x01 1921da177e4SLinus Torvalds #define LMP_PSCHEME 0x02 1931da177e4SLinus Torvalds #define LMP_PCONTROL 0x04 1941da177e4SLinus Torvalds 195d5859e22SJohan Hedberg #define LMP_RSSI_INQ 0x40 1965b7f9909SMarcel Holtmann #define LMP_ESCO 0x80 1975b7f9909SMarcel Holtmann 1985b7f9909SMarcel Holtmann #define LMP_EV4 0x01 1995b7f9909SMarcel Holtmann #define LMP_EV5 0x02 200d5859e22SJohan Hedberg #define LMP_LE 0x40 2015b7f9909SMarcel Holtmann 20204837f64SMarcel Holtmann #define LMP_SNIFF_SUBR 0x02 203d5859e22SJohan Hedberg #define LMP_PAUSE_ENC 0x04 204efc7688bSMarcel Holtmann #define LMP_EDR_ESCO_2M 0x20 205efc7688bSMarcel Holtmann #define LMP_EDR_ESCO_3M 0x40 206efc7688bSMarcel Holtmann #define LMP_EDR_3S_ESCO 0x80 20704837f64SMarcel Holtmann 208d5859e22SJohan Hedberg #define LMP_EXT_INQ 0x01 209769be974SMarcel Holtmann #define LMP_SIMPLE_PAIR 0x08 210e702112fSAndrei Emeltchenko #define LMP_NO_FLUSH 0x40 211769be974SMarcel Holtmann 212d5859e22SJohan Hedberg #define LMP_LSTO 0x01 213d5859e22SJohan Hedberg #define LMP_INQ_TX_PWR 0x02 214d5859e22SJohan Hedberg 21504837f64SMarcel Holtmann /* Connection modes */ 21604837f64SMarcel Holtmann #define HCI_CM_ACTIVE 0x0000 21704837f64SMarcel Holtmann #define HCI_CM_HOLD 0x0001 21804837f64SMarcel Holtmann #define HCI_CM_SNIFF 0x0002 21904837f64SMarcel Holtmann #define HCI_CM_PARK 0x0003 22004837f64SMarcel Holtmann 2211da177e4SLinus Torvalds /* Link policies */ 2221da177e4SLinus Torvalds #define HCI_LP_RSWITCH 0x0001 2231da177e4SLinus Torvalds #define HCI_LP_HOLD 0x0002 2241da177e4SLinus Torvalds #define HCI_LP_SNIFF 0x0004 2251da177e4SLinus Torvalds #define HCI_LP_PARK 0x0008 2261da177e4SLinus Torvalds 22704837f64SMarcel Holtmann /* Link modes */ 2281da177e4SLinus Torvalds #define HCI_LM_ACCEPT 0x8000 2291da177e4SLinus Torvalds #define HCI_LM_MASTER 0x0001 2301da177e4SLinus Torvalds #define HCI_LM_AUTH 0x0002 2311da177e4SLinus Torvalds #define HCI_LM_ENCRYPT 0x0004 2321da177e4SLinus Torvalds #define HCI_LM_TRUSTED 0x0008 2331da177e4SLinus Torvalds #define HCI_LM_RELIABLE 0x0010 2341da177e4SLinus Torvalds #define HCI_LM_SECURE 0x0020 2351da177e4SLinus Torvalds 23640be492fSMarcel Holtmann /* Authentication types */ 23740be492fSMarcel Holtmann #define HCI_AT_NO_BONDING 0x00 23840be492fSMarcel Holtmann #define HCI_AT_NO_BONDING_MITM 0x01 23940be492fSMarcel Holtmann #define HCI_AT_DEDICATED_BONDING 0x02 24040be492fSMarcel Holtmann #define HCI_AT_DEDICATED_BONDING_MITM 0x03 24140be492fSMarcel Holtmann #define HCI_AT_GENERAL_BONDING 0x04 24240be492fSMarcel Holtmann #define HCI_AT_GENERAL_BONDING_MITM 0x05 24340be492fSMarcel Holtmann 2441da177e4SLinus Torvalds /* ----- HCI Commands ---- */ 245a9de9248SMarcel Holtmann #define HCI_OP_INQUIRY 0x0401 246a9de9248SMarcel Holtmann struct hci_cp_inquiry { 247a9de9248SMarcel Holtmann __u8 lap[3]; 248a9de9248SMarcel Holtmann __u8 length; 249a9de9248SMarcel Holtmann __u8 num_rsp; 25066c853ccSGustavo F. Padovan } __packed; 2511da177e4SLinus Torvalds 252a9de9248SMarcel Holtmann #define HCI_OP_INQUIRY_CANCEL 0x0402 253a9de9248SMarcel Holtmann 254a9de9248SMarcel Holtmann #define HCI_OP_EXIT_PERIODIC_INQ 0x0404 255a9de9248SMarcel Holtmann 256a9de9248SMarcel Holtmann #define HCI_OP_CREATE_CONN 0x0405 257a9de9248SMarcel Holtmann struct hci_cp_create_conn { 258a9de9248SMarcel Holtmann bdaddr_t bdaddr; 259a9de9248SMarcel Holtmann __le16 pkt_type; 260a9de9248SMarcel Holtmann __u8 pscan_rep_mode; 261a9de9248SMarcel Holtmann __u8 pscan_mode; 262a9de9248SMarcel Holtmann __le16 clock_offset; 263a9de9248SMarcel Holtmann __u8 role_switch; 26466c853ccSGustavo F. Padovan } __packed; 2651da177e4SLinus Torvalds 266a9de9248SMarcel Holtmann #define HCI_OP_DISCONNECT 0x0406 267a9de9248SMarcel Holtmann struct hci_cp_disconnect { 268a9de9248SMarcel Holtmann __le16 handle; 269a9de9248SMarcel Holtmann __u8 reason; 27066c853ccSGustavo F. Padovan } __packed; 2711da177e4SLinus Torvalds 272a9de9248SMarcel Holtmann #define HCI_OP_ADD_SCO 0x0407 273a9de9248SMarcel Holtmann struct hci_cp_add_sco { 274a9de9248SMarcel Holtmann __le16 handle; 275a9de9248SMarcel Holtmann __le16 pkt_type; 27666c853ccSGustavo F. Padovan } __packed; 277a9de9248SMarcel Holtmann 278a9de9248SMarcel Holtmann #define HCI_OP_CREATE_CONN_CANCEL 0x0408 279a9de9248SMarcel Holtmann struct hci_cp_create_conn_cancel { 2801da177e4SLinus Torvalds bdaddr_t bdaddr; 28166c853ccSGustavo F. Padovan } __packed; 2821da177e4SLinus Torvalds 283a9de9248SMarcel Holtmann #define HCI_OP_ACCEPT_CONN_REQ 0x0409 284a9de9248SMarcel Holtmann struct hci_cp_accept_conn_req { 285a9de9248SMarcel Holtmann bdaddr_t bdaddr; 286a9de9248SMarcel Holtmann __u8 role; 28766c853ccSGustavo F. Padovan } __packed; 2881da177e4SLinus Torvalds 289a9de9248SMarcel Holtmann #define HCI_OP_REJECT_CONN_REQ 0x040a 290a9de9248SMarcel Holtmann struct hci_cp_reject_conn_req { 291a9de9248SMarcel Holtmann bdaddr_t bdaddr; 292a9de9248SMarcel Holtmann __u8 reason; 29366c853ccSGustavo F. Padovan } __packed; 2941da177e4SLinus Torvalds 295a9de9248SMarcel Holtmann #define HCI_OP_LINK_KEY_REPLY 0x040b 296a9de9248SMarcel Holtmann struct hci_cp_link_key_reply { 297a9de9248SMarcel Holtmann bdaddr_t bdaddr; 298a9de9248SMarcel Holtmann __u8 link_key[16]; 29966c853ccSGustavo F. Padovan } __packed; 3001da177e4SLinus Torvalds 301a9de9248SMarcel Holtmann #define HCI_OP_LINK_KEY_NEG_REPLY 0x040c 302a9de9248SMarcel Holtmann struct hci_cp_link_key_neg_reply { 303a9de9248SMarcel Holtmann bdaddr_t bdaddr; 30466c853ccSGustavo F. Padovan } __packed; 3051da177e4SLinus Torvalds 306a9de9248SMarcel Holtmann #define HCI_OP_PIN_CODE_REPLY 0x040d 307a9de9248SMarcel Holtmann struct hci_cp_pin_code_reply { 308a9de9248SMarcel Holtmann bdaddr_t bdaddr; 309a9de9248SMarcel Holtmann __u8 pin_len; 310a9de9248SMarcel Holtmann __u8 pin_code[16]; 31166c853ccSGustavo F. Padovan } __packed; 312980e1a53SJohan Hedberg struct hci_rp_pin_code_reply { 313980e1a53SJohan Hedberg __u8 status; 314980e1a53SJohan Hedberg bdaddr_t bdaddr; 315980e1a53SJohan Hedberg } __packed; 316a9de9248SMarcel Holtmann 317a9de9248SMarcel Holtmann #define HCI_OP_PIN_CODE_NEG_REPLY 0x040e 318a9de9248SMarcel Holtmann struct hci_cp_pin_code_neg_reply { 319a9de9248SMarcel Holtmann bdaddr_t bdaddr; 32066c853ccSGustavo F. Padovan } __packed; 321980e1a53SJohan Hedberg struct hci_rp_pin_code_neg_reply { 322980e1a53SJohan Hedberg __u8 status; 323980e1a53SJohan Hedberg bdaddr_t bdaddr; 324980e1a53SJohan Hedberg } __packed; 325a9de9248SMarcel Holtmann 326a9de9248SMarcel Holtmann #define HCI_OP_CHANGE_CONN_PTYPE 0x040f 327a9de9248SMarcel Holtmann struct hci_cp_change_conn_ptype { 328a9de9248SMarcel Holtmann __le16 handle; 329a9de9248SMarcel Holtmann __le16 pkt_type; 33066c853ccSGustavo F. Padovan } __packed; 331a9de9248SMarcel Holtmann 332a9de9248SMarcel Holtmann #define HCI_OP_AUTH_REQUESTED 0x0411 333a9de9248SMarcel Holtmann struct hci_cp_auth_requested { 334a9de9248SMarcel Holtmann __le16 handle; 33566c853ccSGustavo F. Padovan } __packed; 336a9de9248SMarcel Holtmann 337a9de9248SMarcel Holtmann #define HCI_OP_SET_CONN_ENCRYPT 0x0413 338a9de9248SMarcel Holtmann struct hci_cp_set_conn_encrypt { 339a9de9248SMarcel Holtmann __le16 handle; 340a9de9248SMarcel Holtmann __u8 encrypt; 34166c853ccSGustavo F. Padovan } __packed; 342a9de9248SMarcel Holtmann 343a9de9248SMarcel Holtmann #define HCI_OP_CHANGE_CONN_LINK_KEY 0x0415 344a9de9248SMarcel Holtmann struct hci_cp_change_conn_link_key { 345a9de9248SMarcel Holtmann __le16 handle; 34666c853ccSGustavo F. Padovan } __packed; 347a9de9248SMarcel Holtmann 348a9de9248SMarcel Holtmann #define HCI_OP_REMOTE_NAME_REQ 0x0419 349a9de9248SMarcel Holtmann struct hci_cp_remote_name_req { 350a9de9248SMarcel Holtmann bdaddr_t bdaddr; 351a9de9248SMarcel Holtmann __u8 pscan_rep_mode; 352a9de9248SMarcel Holtmann __u8 pscan_mode; 353a9de9248SMarcel Holtmann __le16 clock_offset; 35466c853ccSGustavo F. Padovan } __packed; 355a9de9248SMarcel Holtmann 356a9de9248SMarcel Holtmann #define HCI_OP_REMOTE_NAME_REQ_CANCEL 0x041a 357a9de9248SMarcel Holtmann struct hci_cp_remote_name_req_cancel { 358a9de9248SMarcel Holtmann bdaddr_t bdaddr; 35966c853ccSGustavo F. Padovan } __packed; 360a9de9248SMarcel Holtmann 361a9de9248SMarcel Holtmann #define HCI_OP_READ_REMOTE_FEATURES 0x041b 362a9de9248SMarcel Holtmann struct hci_cp_read_remote_features { 363a9de9248SMarcel Holtmann __le16 handle; 36466c853ccSGustavo F. Padovan } __packed; 365a9de9248SMarcel Holtmann 366a9de9248SMarcel Holtmann #define HCI_OP_READ_REMOTE_EXT_FEATURES 0x041c 367a9de9248SMarcel Holtmann struct hci_cp_read_remote_ext_features { 368a9de9248SMarcel Holtmann __le16 handle; 369a9de9248SMarcel Holtmann __u8 page; 37066c853ccSGustavo F. Padovan } __packed; 371a9de9248SMarcel Holtmann 372a9de9248SMarcel Holtmann #define HCI_OP_READ_REMOTE_VERSION 0x041d 373a9de9248SMarcel Holtmann struct hci_cp_read_remote_version { 374a9de9248SMarcel Holtmann __le16 handle; 37566c853ccSGustavo F. Padovan } __packed; 376a9de9248SMarcel Holtmann 377a9de9248SMarcel Holtmann #define HCI_OP_SETUP_SYNC_CONN 0x0428 378a9de9248SMarcel Holtmann struct hci_cp_setup_sync_conn { 379a9de9248SMarcel Holtmann __le16 handle; 380a9de9248SMarcel Holtmann __le32 tx_bandwidth; 381a9de9248SMarcel Holtmann __le32 rx_bandwidth; 382a9de9248SMarcel Holtmann __le16 max_latency; 383a9de9248SMarcel Holtmann __le16 voice_setting; 384a9de9248SMarcel Holtmann __u8 retrans_effort; 385a9de9248SMarcel Holtmann __le16 pkt_type; 38666c853ccSGustavo F. Padovan } __packed; 387a9de9248SMarcel Holtmann 388a9de9248SMarcel Holtmann #define HCI_OP_ACCEPT_SYNC_CONN_REQ 0x0429 389a9de9248SMarcel Holtmann struct hci_cp_accept_sync_conn_req { 390a9de9248SMarcel Holtmann bdaddr_t bdaddr; 391a9de9248SMarcel Holtmann __le32 tx_bandwidth; 392a9de9248SMarcel Holtmann __le32 rx_bandwidth; 393a9de9248SMarcel Holtmann __le16 max_latency; 394a9de9248SMarcel Holtmann __le16 content_format; 395a9de9248SMarcel Holtmann __u8 retrans_effort; 396a9de9248SMarcel Holtmann __le16 pkt_type; 39766c853ccSGustavo F. Padovan } __packed; 398a9de9248SMarcel Holtmann 399a9de9248SMarcel Holtmann #define HCI_OP_REJECT_SYNC_CONN_REQ 0x042a 400a9de9248SMarcel Holtmann struct hci_cp_reject_sync_conn_req { 401a9de9248SMarcel Holtmann bdaddr_t bdaddr; 402a9de9248SMarcel Holtmann __u8 reason; 40366c853ccSGustavo F. Padovan } __packed; 404a9de9248SMarcel Holtmann 40517fa4b9dSJohan Hedberg #define HCI_OP_IO_CAPABILITY_REPLY 0x042b 40617fa4b9dSJohan Hedberg struct hci_cp_io_capability_reply { 40717fa4b9dSJohan Hedberg bdaddr_t bdaddr; 40817fa4b9dSJohan Hedberg __u8 capability; 40917fa4b9dSJohan Hedberg __u8 oob_data; 41017fa4b9dSJohan Hedberg __u8 authentication; 41117fa4b9dSJohan Hedberg } __packed; 41217fa4b9dSJohan Hedberg 41303b555e1SJohan Hedberg #define HCI_OP_IO_CAPABILITY_NEG_REPLY 0x0434 41403b555e1SJohan Hedberg struct hci_cp_io_capability_neg_reply { 41503b555e1SJohan Hedberg bdaddr_t bdaddr; 41603b555e1SJohan Hedberg __u8 reason; 41703b555e1SJohan Hedberg } __packed; 41803b555e1SJohan Hedberg 419a9de9248SMarcel Holtmann #define HCI_OP_SNIFF_MODE 0x0803 420a9de9248SMarcel Holtmann struct hci_cp_sniff_mode { 421a9de9248SMarcel Holtmann __le16 handle; 422a9de9248SMarcel Holtmann __le16 max_interval; 423a9de9248SMarcel Holtmann __le16 min_interval; 424a9de9248SMarcel Holtmann __le16 attempt; 425a9de9248SMarcel Holtmann __le16 timeout; 42666c853ccSGustavo F. Padovan } __packed; 427a9de9248SMarcel Holtmann 428a9de9248SMarcel Holtmann #define HCI_OP_EXIT_SNIFF_MODE 0x0804 429a9de9248SMarcel Holtmann struct hci_cp_exit_sniff_mode { 430a9de9248SMarcel Holtmann __le16 handle; 43166c853ccSGustavo F. Padovan } __packed; 432a9de9248SMarcel Holtmann 433a9de9248SMarcel Holtmann #define HCI_OP_ROLE_DISCOVERY 0x0809 434a9de9248SMarcel Holtmann struct hci_cp_role_discovery { 435a9de9248SMarcel Holtmann __le16 handle; 43666c853ccSGustavo F. Padovan } __packed; 437a9de9248SMarcel Holtmann struct hci_rp_role_discovery { 438a9de9248SMarcel Holtmann __u8 status; 439a9de9248SMarcel Holtmann __le16 handle; 440a9de9248SMarcel Holtmann __u8 role; 44166c853ccSGustavo F. Padovan } __packed; 442a9de9248SMarcel Holtmann 443a9de9248SMarcel Holtmann #define HCI_OP_SWITCH_ROLE 0x080b 444a9de9248SMarcel Holtmann struct hci_cp_switch_role { 445a9de9248SMarcel Holtmann bdaddr_t bdaddr; 446a9de9248SMarcel Holtmann __u8 role; 44766c853ccSGustavo F. Padovan } __packed; 448a9de9248SMarcel Holtmann 449a9de9248SMarcel Holtmann #define HCI_OP_READ_LINK_POLICY 0x080c 450a9de9248SMarcel Holtmann struct hci_cp_read_link_policy { 451a9de9248SMarcel Holtmann __le16 handle; 45266c853ccSGustavo F. Padovan } __packed; 453a9de9248SMarcel Holtmann struct hci_rp_read_link_policy { 454a9de9248SMarcel Holtmann __u8 status; 455a9de9248SMarcel Holtmann __le16 handle; 456a9de9248SMarcel Holtmann __le16 policy; 45766c853ccSGustavo F. Padovan } __packed; 458a9de9248SMarcel Holtmann 459a9de9248SMarcel Holtmann #define HCI_OP_WRITE_LINK_POLICY 0x080d 460a9de9248SMarcel Holtmann struct hci_cp_write_link_policy { 461a9de9248SMarcel Holtmann __le16 handle; 462a9de9248SMarcel Holtmann __le16 policy; 46366c853ccSGustavo F. Padovan } __packed; 464a9de9248SMarcel Holtmann struct hci_rp_write_link_policy { 465a9de9248SMarcel Holtmann __u8 status; 466a9de9248SMarcel Holtmann __le16 handle; 46766c853ccSGustavo F. Padovan } __packed; 468a9de9248SMarcel Holtmann 469e4e8e37cSMarcel Holtmann #define HCI_OP_READ_DEF_LINK_POLICY 0x080e 470e4e8e37cSMarcel Holtmann struct hci_rp_read_def_link_policy { 471e4e8e37cSMarcel Holtmann __u8 status; 472e4e8e37cSMarcel Holtmann __le16 policy; 47366c853ccSGustavo F. Padovan } __packed; 474e4e8e37cSMarcel Holtmann 475e4e8e37cSMarcel Holtmann #define HCI_OP_WRITE_DEF_LINK_POLICY 0x080f 476e4e8e37cSMarcel Holtmann struct hci_cp_write_def_link_policy { 477e4e8e37cSMarcel Holtmann __le16 policy; 47866c853ccSGustavo F. Padovan } __packed; 479e4e8e37cSMarcel Holtmann 480a9de9248SMarcel Holtmann #define HCI_OP_SNIFF_SUBRATE 0x0811 481a9de9248SMarcel Holtmann struct hci_cp_sniff_subrate { 482a9de9248SMarcel Holtmann __le16 handle; 483a9de9248SMarcel Holtmann __le16 max_latency; 484a9de9248SMarcel Holtmann __le16 min_remote_timeout; 485a9de9248SMarcel Holtmann __le16 min_local_timeout; 48666c853ccSGustavo F. Padovan } __packed; 487a9de9248SMarcel Holtmann 488a9de9248SMarcel Holtmann #define HCI_OP_SET_EVENT_MASK 0x0c01 489a9de9248SMarcel Holtmann struct hci_cp_set_event_mask { 490a9de9248SMarcel Holtmann __u8 mask[8]; 49166c853ccSGustavo F. Padovan } __packed; 492a9de9248SMarcel Holtmann 493a9de9248SMarcel Holtmann #define HCI_OP_RESET 0x0c03 494a9de9248SMarcel Holtmann 495a9de9248SMarcel Holtmann #define HCI_OP_SET_EVENT_FLT 0x0c05 4961da177e4SLinus Torvalds struct hci_cp_set_event_flt { 4971da177e4SLinus Torvalds __u8 flt_type; 4981da177e4SLinus Torvalds __u8 cond_type; 4991da177e4SLinus Torvalds __u8 condition[0]; 50066c853ccSGustavo F. Padovan } __packed; 5011da177e4SLinus Torvalds 5021da177e4SLinus Torvalds /* Filter types */ 5031da177e4SLinus Torvalds #define HCI_FLT_CLEAR_ALL 0x00 5041da177e4SLinus Torvalds #define HCI_FLT_INQ_RESULT 0x01 5051da177e4SLinus Torvalds #define HCI_FLT_CONN_SETUP 0x02 5061da177e4SLinus Torvalds 5071da177e4SLinus Torvalds /* CONN_SETUP Condition types */ 5081da177e4SLinus Torvalds #define HCI_CONN_SETUP_ALLOW_ALL 0x00 5091da177e4SLinus Torvalds #define HCI_CONN_SETUP_ALLOW_CLASS 0x01 5101da177e4SLinus Torvalds #define HCI_CONN_SETUP_ALLOW_BDADDR 0x02 5111da177e4SLinus Torvalds 5121da177e4SLinus Torvalds /* CONN_SETUP Conditions */ 5131da177e4SLinus Torvalds #define HCI_CONN_SETUP_AUTO_OFF 0x01 5141da177e4SLinus Torvalds #define HCI_CONN_SETUP_AUTO_ON 0x02 5151da177e4SLinus Torvalds 516b0916ea0SJohan Hedberg #define HCI_OP_DELETE_STORED_LINK_KEY 0x0c12 517b0916ea0SJohan Hedberg struct hci_cp_delete_stored_link_key { 518b0916ea0SJohan Hedberg bdaddr_t bdaddr; 519b0916ea0SJohan Hedberg __u8 delete_all; 520b0916ea0SJohan Hedberg } __packed; 521b0916ea0SJohan Hedberg 522a9de9248SMarcel Holtmann #define HCI_OP_WRITE_LOCAL_NAME 0x0c13 523a9de9248SMarcel Holtmann struct hci_cp_write_local_name { 524a9de9248SMarcel Holtmann __u8 name[248]; 52566c853ccSGustavo F. Padovan } __packed; 526a9de9248SMarcel Holtmann 527a9de9248SMarcel Holtmann #define HCI_OP_READ_LOCAL_NAME 0x0c14 528a9de9248SMarcel Holtmann struct hci_rp_read_local_name { 529a9de9248SMarcel Holtmann __u8 status; 530a9de9248SMarcel Holtmann __u8 name[248]; 53166c853ccSGustavo F. Padovan } __packed; 532a9de9248SMarcel Holtmann 533a9de9248SMarcel Holtmann #define HCI_OP_WRITE_CA_TIMEOUT 0x0c16 534a9de9248SMarcel Holtmann 535a9de9248SMarcel Holtmann #define HCI_OP_WRITE_PG_TIMEOUT 0x0c18 536a9de9248SMarcel Holtmann 537a9de9248SMarcel Holtmann #define HCI_OP_WRITE_SCAN_ENABLE 0x0c1a 538a9de9248SMarcel Holtmann #define SCAN_DISABLED 0x00 539a9de9248SMarcel Holtmann #define SCAN_INQUIRY 0x01 540a9de9248SMarcel Holtmann #define SCAN_PAGE 0x02 541a9de9248SMarcel Holtmann 542a9de9248SMarcel Holtmann #define HCI_OP_READ_AUTH_ENABLE 0x0c1f 543a9de9248SMarcel Holtmann 544a9de9248SMarcel Holtmann #define HCI_OP_WRITE_AUTH_ENABLE 0x0c20 545a9de9248SMarcel Holtmann #define AUTH_DISABLED 0x00 546a9de9248SMarcel Holtmann #define AUTH_ENABLED 0x01 547a9de9248SMarcel Holtmann 548a9de9248SMarcel Holtmann #define HCI_OP_READ_ENCRYPT_MODE 0x0c21 549a9de9248SMarcel Holtmann 550a9de9248SMarcel Holtmann #define HCI_OP_WRITE_ENCRYPT_MODE 0x0c22 551a9de9248SMarcel Holtmann #define ENCRYPT_DISABLED 0x00 552a9de9248SMarcel Holtmann #define ENCRYPT_P2P 0x01 553a9de9248SMarcel Holtmann #define ENCRYPT_BOTH 0x02 554a9de9248SMarcel Holtmann 555a9de9248SMarcel Holtmann #define HCI_OP_READ_CLASS_OF_DEV 0x0c23 556a9de9248SMarcel Holtmann struct hci_rp_read_class_of_dev { 5571da177e4SLinus Torvalds __u8 status; 5581da177e4SLinus Torvalds __u8 dev_class[3]; 55966c853ccSGustavo F. Padovan } __packed; 5601da177e4SLinus Torvalds 561a9de9248SMarcel Holtmann #define HCI_OP_WRITE_CLASS_OF_DEV 0x0c24 562a9de9248SMarcel Holtmann struct hci_cp_write_class_of_dev { 5631da177e4SLinus Torvalds __u8 dev_class[3]; 56466c853ccSGustavo F. Padovan } __packed; 5651da177e4SLinus Torvalds 566a9de9248SMarcel Holtmann #define HCI_OP_READ_VOICE_SETTING 0x0c25 5671da177e4SLinus Torvalds struct hci_rp_read_voice_setting { 5681da177e4SLinus Torvalds __u8 status; 5691ebb9252SMarcel Holtmann __le16 voice_setting; 57066c853ccSGustavo F. Padovan } __packed; 5711da177e4SLinus Torvalds 572a9de9248SMarcel Holtmann #define HCI_OP_WRITE_VOICE_SETTING 0x0c26 5731da177e4SLinus Torvalds struct hci_cp_write_voice_setting { 5741ebb9252SMarcel Holtmann __le16 voice_setting; 57566c853ccSGustavo F. Padovan } __packed; 5761da177e4SLinus Torvalds 577a9de9248SMarcel Holtmann #define HCI_OP_HOST_BUFFER_SIZE 0x0c33 5781da177e4SLinus Torvalds struct hci_cp_host_buffer_size { 5791ebb9252SMarcel Holtmann __le16 acl_mtu; 5801da177e4SLinus Torvalds __u8 sco_mtu; 5811ebb9252SMarcel Holtmann __le16 acl_max_pkt; 5821ebb9252SMarcel Holtmann __le16 sco_max_pkt; 58366c853ccSGustavo F. Padovan } __packed; 5841da177e4SLinus Torvalds 585d5859e22SJohan Hedberg #define HCI_OP_WRITE_INQUIRY_MODE 0x0c45 586d5859e22SJohan Hedberg 587333140b5SMarcel Holtmann #define HCI_OP_READ_SSP_MODE 0x0c55 588333140b5SMarcel Holtmann struct hci_rp_read_ssp_mode { 589333140b5SMarcel Holtmann __u8 status; 590333140b5SMarcel Holtmann __u8 mode; 59166c853ccSGustavo F. Padovan } __packed; 592333140b5SMarcel Holtmann 593333140b5SMarcel Holtmann #define HCI_OP_WRITE_SSP_MODE 0x0c56 594333140b5SMarcel Holtmann struct hci_cp_write_ssp_mode { 595333140b5SMarcel Holtmann __u8 mode; 59666c853ccSGustavo F. Padovan } __packed; 597333140b5SMarcel Holtmann 598d5859e22SJohan Hedberg #define HCI_OP_READ_INQ_RSP_TX_POWER 0x0c58 599d5859e22SJohan Hedberg 600a9de9248SMarcel Holtmann #define HCI_OP_READ_LOCAL_VERSION 0x1001 601a9de9248SMarcel Holtmann struct hci_rp_read_local_version { 6021da177e4SLinus Torvalds __u8 status; 603a9de9248SMarcel Holtmann __u8 hci_ver; 604a9de9248SMarcel Holtmann __le16 hci_rev; 605a9de9248SMarcel Holtmann __u8 lmp_ver; 606a9de9248SMarcel Holtmann __le16 manufacturer; 607a9de9248SMarcel Holtmann __le16 lmp_subver; 60866c853ccSGustavo F. Padovan } __packed; 6091da177e4SLinus Torvalds 610a9de9248SMarcel Holtmann #define HCI_OP_READ_LOCAL_COMMANDS 0x1002 611a9de9248SMarcel Holtmann struct hci_rp_read_local_commands { 6121da177e4SLinus Torvalds __u8 status; 613a9de9248SMarcel Holtmann __u8 commands[64]; 61466c853ccSGustavo F. Padovan } __packed; 6151da177e4SLinus Torvalds 616a9de9248SMarcel Holtmann #define HCI_OP_READ_LOCAL_FEATURES 0x1003 617a9de9248SMarcel Holtmann struct hci_rp_read_local_features { 618a9de9248SMarcel Holtmann __u8 status; 619a9de9248SMarcel Holtmann __u8 features[8]; 62066c853ccSGustavo F. Padovan } __packed; 621a9de9248SMarcel Holtmann 622a9de9248SMarcel Holtmann #define HCI_OP_READ_LOCAL_EXT_FEATURES 0x1004 623a9de9248SMarcel Holtmann struct hci_rp_read_local_ext_features { 624a9de9248SMarcel Holtmann __u8 status; 625a9de9248SMarcel Holtmann __u8 page; 626a9de9248SMarcel Holtmann __u8 max_page; 627a9de9248SMarcel Holtmann __u8 features[8]; 62866c853ccSGustavo F. Padovan } __packed; 629a9de9248SMarcel Holtmann 630a9de9248SMarcel Holtmann #define HCI_OP_READ_BUFFER_SIZE 0x1005 631a9de9248SMarcel Holtmann struct hci_rp_read_buffer_size { 632a9de9248SMarcel Holtmann __u8 status; 633a9de9248SMarcel Holtmann __le16 acl_mtu; 634a9de9248SMarcel Holtmann __u8 sco_mtu; 635a9de9248SMarcel Holtmann __le16 acl_max_pkt; 636a9de9248SMarcel Holtmann __le16 sco_max_pkt; 63766c853ccSGustavo F. Padovan } __packed; 638a9de9248SMarcel Holtmann 639a9de9248SMarcel Holtmann #define HCI_OP_READ_BD_ADDR 0x1009 640a9de9248SMarcel Holtmann struct hci_rp_read_bd_addr { 641a9de9248SMarcel Holtmann __u8 status; 6421da177e4SLinus Torvalds bdaddr_t bdaddr; 64366c853ccSGustavo F. Padovan } __packed; 6441da177e4SLinus Torvalds 645*63185f64SVille Tervo #define HCI_OP_LE_SET_EVENT_MASK 0x2001 646*63185f64SVille Tervo struct hci_cp_le_set_event_mask { 647*63185f64SVille Tervo __u8 mask[8]; 648*63185f64SVille Tervo } __packed; 649*63185f64SVille Tervo 650*63185f64SVille Tervo #define HCI_OP_LE_READ_BUFFER_SIZE 0x2002 651*63185f64SVille Tervo struct hci_rp_le_read_buffer_size { 652*63185f64SVille Tervo __u8 status; 653*63185f64SVille Tervo __le16 le_mtu; 654*63185f64SVille Tervo __u8 le_max_pkt; 655*63185f64SVille Tervo } __packed; 656*63185f64SVille Tervo 657*63185f64SVille Tervo #define HCI_OP_LE_CREATE_CONN 0x200d 658*63185f64SVille Tervo struct hci_cp_le_create_conn { 659*63185f64SVille Tervo __le16 scan_interval; 660*63185f64SVille Tervo __le16 scan_window; 661*63185f64SVille Tervo __u8 filter_policy; 662*63185f64SVille Tervo __u8 peer_addr_type; 663*63185f64SVille Tervo bdaddr_t peer_addr; 664*63185f64SVille Tervo __u8 own_address_type; 665*63185f64SVille Tervo __le16 conn_interval_min; 666*63185f64SVille Tervo __le16 conn_interval_max; 667*63185f64SVille Tervo __le16 conn_latency; 668*63185f64SVille Tervo __le16 supervision_timeout; 669*63185f64SVille Tervo __le16 min_ce_len; 670*63185f64SVille Tervo __le16 max_ce_len; 671*63185f64SVille Tervo } __packed; 672*63185f64SVille Tervo 673*63185f64SVille Tervo #define HCI_OP_LE_CREATE_CONN_CANCEL 0x200e 674*63185f64SVille Tervo 6751da177e4SLinus Torvalds /* ---- HCI Events ---- */ 6761da177e4SLinus Torvalds #define HCI_EV_INQUIRY_COMPLETE 0x01 6771da177e4SLinus Torvalds 6781da177e4SLinus Torvalds #define HCI_EV_INQUIRY_RESULT 0x02 6791da177e4SLinus Torvalds struct inquiry_info { 6801da177e4SLinus Torvalds bdaddr_t bdaddr; 6811da177e4SLinus Torvalds __u8 pscan_rep_mode; 6821da177e4SLinus Torvalds __u8 pscan_period_mode; 6831da177e4SLinus Torvalds __u8 pscan_mode; 6841da177e4SLinus Torvalds __u8 dev_class[3]; 6851ebb9252SMarcel Holtmann __le16 clock_offset; 68666c853ccSGustavo F. Padovan } __packed; 6871da177e4SLinus Torvalds 6881da177e4SLinus Torvalds #define HCI_EV_CONN_COMPLETE 0x03 6891da177e4SLinus Torvalds struct hci_ev_conn_complete { 6901da177e4SLinus Torvalds __u8 status; 6911ebb9252SMarcel Holtmann __le16 handle; 6921da177e4SLinus Torvalds bdaddr_t bdaddr; 6931da177e4SLinus Torvalds __u8 link_type; 6941da177e4SLinus Torvalds __u8 encr_mode; 69566c853ccSGustavo F. Padovan } __packed; 6961da177e4SLinus Torvalds 6971da177e4SLinus Torvalds #define HCI_EV_CONN_REQUEST 0x04 6981da177e4SLinus Torvalds struct hci_ev_conn_request { 6991da177e4SLinus Torvalds bdaddr_t bdaddr; 7001da177e4SLinus Torvalds __u8 dev_class[3]; 7011da177e4SLinus Torvalds __u8 link_type; 70266c853ccSGustavo F. Padovan } __packed; 7031da177e4SLinus Torvalds 7041da177e4SLinus Torvalds #define HCI_EV_DISCONN_COMPLETE 0x05 7051da177e4SLinus Torvalds struct hci_ev_disconn_complete { 7061da177e4SLinus Torvalds __u8 status; 7071ebb9252SMarcel Holtmann __le16 handle; 7081da177e4SLinus Torvalds __u8 reason; 70966c853ccSGustavo F. Padovan } __packed; 7101da177e4SLinus Torvalds 7111da177e4SLinus Torvalds #define HCI_EV_AUTH_COMPLETE 0x06 7121da177e4SLinus Torvalds struct hci_ev_auth_complete { 7131da177e4SLinus Torvalds __u8 status; 7141ebb9252SMarcel Holtmann __le16 handle; 71566c853ccSGustavo F. Padovan } __packed; 7161da177e4SLinus Torvalds 717a9de9248SMarcel Holtmann #define HCI_EV_REMOTE_NAME 0x07 718a9de9248SMarcel Holtmann struct hci_ev_remote_name { 719a9de9248SMarcel Holtmann __u8 status; 720a9de9248SMarcel Holtmann bdaddr_t bdaddr; 721a9de9248SMarcel Holtmann __u8 name[248]; 72266c853ccSGustavo F. Padovan } __packed; 723a9de9248SMarcel Holtmann 7241da177e4SLinus Torvalds #define HCI_EV_ENCRYPT_CHANGE 0x08 7251da177e4SLinus Torvalds struct hci_ev_encrypt_change { 7261da177e4SLinus Torvalds __u8 status; 7271ebb9252SMarcel Holtmann __le16 handle; 7281da177e4SLinus Torvalds __u8 encrypt; 72966c853ccSGustavo F. Padovan } __packed; 7301da177e4SLinus Torvalds 731a9de9248SMarcel Holtmann #define HCI_EV_CHANGE_LINK_KEY_COMPLETE 0x09 732a9de9248SMarcel Holtmann struct hci_ev_change_link_key_complete { 7331da177e4SLinus Torvalds __u8 status; 7341ebb9252SMarcel Holtmann __le16 handle; 73566c853ccSGustavo F. Padovan } __packed; 7361da177e4SLinus Torvalds 737a9de9248SMarcel Holtmann #define HCI_EV_REMOTE_FEATURES 0x0b 738a9de9248SMarcel Holtmann struct hci_ev_remote_features { 739a9de9248SMarcel Holtmann __u8 status; 740a9de9248SMarcel Holtmann __le16 handle; 741a9de9248SMarcel Holtmann __u8 features[8]; 74266c853ccSGustavo F. Padovan } __packed; 743a9de9248SMarcel Holtmann 744a9de9248SMarcel Holtmann #define HCI_EV_REMOTE_VERSION 0x0c 745a9de9248SMarcel Holtmann struct hci_ev_remote_version { 746a9de9248SMarcel Holtmann __u8 status; 747a9de9248SMarcel Holtmann __le16 handle; 748a9de9248SMarcel Holtmann __u8 lmp_ver; 749a9de9248SMarcel Holtmann __le16 manufacturer; 750a9de9248SMarcel Holtmann __le16 lmp_subver; 75166c853ccSGustavo F. Padovan } __packed; 752a9de9248SMarcel Holtmann 753a9de9248SMarcel Holtmann #define HCI_EV_QOS_SETUP_COMPLETE 0x0d 7541da177e4SLinus Torvalds struct hci_qos { 7551da177e4SLinus Torvalds __u8 service_type; 7561da177e4SLinus Torvalds __u32 token_rate; 7571da177e4SLinus Torvalds __u32 peak_bandwidth; 7581da177e4SLinus Torvalds __u32 latency; 7591da177e4SLinus Torvalds __u32 delay_variation; 76066c853ccSGustavo F. Padovan } __packed; 7611da177e4SLinus Torvalds struct hci_ev_qos_setup_complete { 7621da177e4SLinus Torvalds __u8 status; 7631ebb9252SMarcel Holtmann __le16 handle; 7641da177e4SLinus Torvalds struct hci_qos qos; 76566c853ccSGustavo F. Padovan } __packed; 7661da177e4SLinus Torvalds 767a9de9248SMarcel Holtmann #define HCI_EV_CMD_COMPLETE 0x0e 7681da177e4SLinus Torvalds struct hci_ev_cmd_complete { 7691da177e4SLinus Torvalds __u8 ncmd; 7701ebb9252SMarcel Holtmann __le16 opcode; 77166c853ccSGustavo F. Padovan } __packed; 7721da177e4SLinus Torvalds 773a9de9248SMarcel Holtmann #define HCI_EV_CMD_STATUS 0x0f 7741da177e4SLinus Torvalds struct hci_ev_cmd_status { 7751da177e4SLinus Torvalds __u8 status; 7761da177e4SLinus Torvalds __u8 ncmd; 7771ebb9252SMarcel Holtmann __le16 opcode; 77866c853ccSGustavo F. Padovan } __packed; 7791da177e4SLinus Torvalds 7801da177e4SLinus Torvalds #define HCI_EV_ROLE_CHANGE 0x12 7811da177e4SLinus Torvalds struct hci_ev_role_change { 7821da177e4SLinus Torvalds __u8 status; 7831da177e4SLinus Torvalds bdaddr_t bdaddr; 7841da177e4SLinus Torvalds __u8 role; 78566c853ccSGustavo F. Padovan } __packed; 7861da177e4SLinus Torvalds 787a9de9248SMarcel Holtmann #define HCI_EV_NUM_COMP_PKTS 0x13 788a9de9248SMarcel Holtmann struct hci_ev_num_comp_pkts { 789a9de9248SMarcel Holtmann __u8 num_hndl; 790a9de9248SMarcel Holtmann /* variable length part */ 79166c853ccSGustavo F. Padovan } __packed; 792a9de9248SMarcel Holtmann 7931da177e4SLinus Torvalds #define HCI_EV_MODE_CHANGE 0x14 7941da177e4SLinus Torvalds struct hci_ev_mode_change { 7951da177e4SLinus Torvalds __u8 status; 7961ebb9252SMarcel Holtmann __le16 handle; 7971da177e4SLinus Torvalds __u8 mode; 7981ebb9252SMarcel Holtmann __le16 interval; 79966c853ccSGustavo F. Padovan } __packed; 8001da177e4SLinus Torvalds 8011da177e4SLinus Torvalds #define HCI_EV_PIN_CODE_REQ 0x16 8021da177e4SLinus Torvalds struct hci_ev_pin_code_req { 8031da177e4SLinus Torvalds bdaddr_t bdaddr; 80466c853ccSGustavo F. Padovan } __packed; 8051da177e4SLinus Torvalds 8061da177e4SLinus Torvalds #define HCI_EV_LINK_KEY_REQ 0x17 8071da177e4SLinus Torvalds struct hci_ev_link_key_req { 8081da177e4SLinus Torvalds bdaddr_t bdaddr; 80966c853ccSGustavo F. Padovan } __packed; 8101da177e4SLinus Torvalds 8111da177e4SLinus Torvalds #define HCI_EV_LINK_KEY_NOTIFY 0x18 8121da177e4SLinus Torvalds struct hci_ev_link_key_notify { 8131da177e4SLinus Torvalds bdaddr_t bdaddr; 8141da177e4SLinus Torvalds __u8 link_key[16]; 8151da177e4SLinus Torvalds __u8 key_type; 81666c853ccSGustavo F. Padovan } __packed; 8171da177e4SLinus Torvalds 818a9de9248SMarcel Holtmann #define HCI_EV_CLOCK_OFFSET 0x1c 8191da177e4SLinus Torvalds struct hci_ev_clock_offset { 8201da177e4SLinus Torvalds __u8 status; 8211ebb9252SMarcel Holtmann __le16 handle; 8221ebb9252SMarcel Holtmann __le16 clock_offset; 82366c853ccSGustavo F. Padovan } __packed; 8241da177e4SLinus Torvalds 825a8746417SMarcel Holtmann #define HCI_EV_PKT_TYPE_CHANGE 0x1d 826a8746417SMarcel Holtmann struct hci_ev_pkt_type_change { 827a8746417SMarcel Holtmann __u8 status; 828a8746417SMarcel Holtmann __le16 handle; 829a8746417SMarcel Holtmann __le16 pkt_type; 83066c853ccSGustavo F. Padovan } __packed; 831a8746417SMarcel Holtmann 83285a1e930SMarcel Holtmann #define HCI_EV_PSCAN_REP_MODE 0x20 83385a1e930SMarcel Holtmann struct hci_ev_pscan_rep_mode { 83485a1e930SMarcel Holtmann bdaddr_t bdaddr; 83585a1e930SMarcel Holtmann __u8 pscan_rep_mode; 83666c853ccSGustavo F. Padovan } __packed; 83785a1e930SMarcel Holtmann 838a9de9248SMarcel Holtmann #define HCI_EV_INQUIRY_RESULT_WITH_RSSI 0x22 839a9de9248SMarcel Holtmann struct inquiry_info_with_rssi { 840a9de9248SMarcel Holtmann bdaddr_t bdaddr; 841a9de9248SMarcel Holtmann __u8 pscan_rep_mode; 842a9de9248SMarcel Holtmann __u8 pscan_period_mode; 843a9de9248SMarcel Holtmann __u8 dev_class[3]; 844a9de9248SMarcel Holtmann __le16 clock_offset; 845a9de9248SMarcel Holtmann __s8 rssi; 84666c853ccSGustavo F. Padovan } __packed; 847a9de9248SMarcel Holtmann struct inquiry_info_with_rssi_and_pscan_mode { 848a9de9248SMarcel Holtmann bdaddr_t bdaddr; 849a9de9248SMarcel Holtmann __u8 pscan_rep_mode; 850a9de9248SMarcel Holtmann __u8 pscan_period_mode; 851a9de9248SMarcel Holtmann __u8 pscan_mode; 852a9de9248SMarcel Holtmann __u8 dev_class[3]; 853a9de9248SMarcel Holtmann __le16 clock_offset; 854a9de9248SMarcel Holtmann __s8 rssi; 85566c853ccSGustavo F. Padovan } __packed; 856a9de9248SMarcel Holtmann 857a9de9248SMarcel Holtmann #define HCI_EV_REMOTE_EXT_FEATURES 0x23 858a9de9248SMarcel Holtmann struct hci_ev_remote_ext_features { 859a9de9248SMarcel Holtmann __u8 status; 860a9de9248SMarcel Holtmann __le16 handle; 861a9de9248SMarcel Holtmann __u8 page; 862a9de9248SMarcel Holtmann __u8 max_page; 863a9de9248SMarcel Holtmann __u8 features[8]; 86466c853ccSGustavo F. Padovan } __packed; 865a9de9248SMarcel Holtmann 866a9de9248SMarcel Holtmann #define HCI_EV_SYNC_CONN_COMPLETE 0x2c 867a9de9248SMarcel Holtmann struct hci_ev_sync_conn_complete { 868a9de9248SMarcel Holtmann __u8 status; 869a9de9248SMarcel Holtmann __le16 handle; 870a9de9248SMarcel Holtmann bdaddr_t bdaddr; 871a9de9248SMarcel Holtmann __u8 link_type; 872a9de9248SMarcel Holtmann __u8 tx_interval; 873a9de9248SMarcel Holtmann __u8 retrans_window; 874a9de9248SMarcel Holtmann __le16 rx_pkt_len; 875a9de9248SMarcel Holtmann __le16 tx_pkt_len; 876a9de9248SMarcel Holtmann __u8 air_mode; 87766c853ccSGustavo F. Padovan } __packed; 878a9de9248SMarcel Holtmann 879a9de9248SMarcel Holtmann #define HCI_EV_SYNC_CONN_CHANGED 0x2d 880a9de9248SMarcel Holtmann struct hci_ev_sync_conn_changed { 881a9de9248SMarcel Holtmann __u8 status; 882a9de9248SMarcel Holtmann __le16 handle; 883a9de9248SMarcel Holtmann __u8 tx_interval; 884a9de9248SMarcel Holtmann __u8 retrans_window; 885a9de9248SMarcel Holtmann __le16 rx_pkt_len; 886a9de9248SMarcel Holtmann __le16 tx_pkt_len; 88766c853ccSGustavo F. Padovan } __packed; 888a9de9248SMarcel Holtmann 889a9de9248SMarcel Holtmann #define HCI_EV_SNIFF_SUBRATE 0x2e 89004837f64SMarcel Holtmann struct hci_ev_sniff_subrate { 89104837f64SMarcel Holtmann __u8 status; 89204837f64SMarcel Holtmann __le16 handle; 89304837f64SMarcel Holtmann __le16 max_tx_latency; 89404837f64SMarcel Holtmann __le16 max_rx_latency; 89504837f64SMarcel Holtmann __le16 max_remote_timeout; 89604837f64SMarcel Holtmann __le16 max_local_timeout; 89766c853ccSGustavo F. Padovan } __packed; 89804837f64SMarcel Holtmann 899a9de9248SMarcel Holtmann #define HCI_EV_EXTENDED_INQUIRY_RESULT 0x2f 900a9de9248SMarcel Holtmann struct extended_inquiry_info { 901a9de9248SMarcel Holtmann bdaddr_t bdaddr; 902a9de9248SMarcel Holtmann __u8 pscan_rep_mode; 903a9de9248SMarcel Holtmann __u8 pscan_period_mode; 904a9de9248SMarcel Holtmann __u8 dev_class[3]; 905a9de9248SMarcel Holtmann __le16 clock_offset; 906a9de9248SMarcel Holtmann __s8 rssi; 907a9de9248SMarcel Holtmann __u8 data[240]; 90866c853ccSGustavo F. Padovan } __packed; 909a9de9248SMarcel Holtmann 9100493684eSMarcel Holtmann #define HCI_EV_IO_CAPA_REQUEST 0x31 9110493684eSMarcel Holtmann struct hci_ev_io_capa_request { 9120493684eSMarcel Holtmann bdaddr_t bdaddr; 91366c853ccSGustavo F. Padovan } __packed; 9140493684eSMarcel Holtmann 91503b555e1SJohan Hedberg #define HCI_EV_IO_CAPA_REPLY 0x32 91603b555e1SJohan Hedberg struct hci_ev_io_capa_reply { 91703b555e1SJohan Hedberg bdaddr_t bdaddr; 91803b555e1SJohan Hedberg __u8 capability; 91903b555e1SJohan Hedberg __u8 oob_data; 92003b555e1SJohan Hedberg __u8 authentication; 92103b555e1SJohan Hedberg } __packed; 92203b555e1SJohan Hedberg 9230493684eSMarcel Holtmann #define HCI_EV_SIMPLE_PAIR_COMPLETE 0x36 9240493684eSMarcel Holtmann struct hci_ev_simple_pair_complete { 9250493684eSMarcel Holtmann __u8 status; 9260493684eSMarcel Holtmann bdaddr_t bdaddr; 92766c853ccSGustavo F. Padovan } __packed; 9280493684eSMarcel Holtmann 92941a96212SMarcel Holtmann #define HCI_EV_REMOTE_HOST_FEATURES 0x3d 93041a96212SMarcel Holtmann struct hci_ev_remote_host_features { 93141a96212SMarcel Holtmann bdaddr_t bdaddr; 93241a96212SMarcel Holtmann __u8 features[8]; 93366c853ccSGustavo F. Padovan } __packed; 93441a96212SMarcel Holtmann 935*63185f64SVille Tervo #define HCI_EV_LE_META 0x3e 936*63185f64SVille Tervo struct hci_ev_le_meta { 937*63185f64SVille Tervo __u8 subevent; 938*63185f64SVille Tervo } __packed; 939*63185f64SVille Tervo 940*63185f64SVille Tervo /* Low energy meta events */ 941*63185f64SVille Tervo #define HCI_EV_LE_CONN_COMPLETE 0x01 942*63185f64SVille Tervo struct hci_ev_le_conn_complete { 943*63185f64SVille Tervo __u8 status; 944*63185f64SVille Tervo __le16 handle; 945*63185f64SVille Tervo __u8 role; 946*63185f64SVille Tervo __u8 bdaddr_type; 947*63185f64SVille Tervo bdaddr_t bdaddr; 948*63185f64SVille Tervo __le16 interval; 949*63185f64SVille Tervo __le16 latency; 950*63185f64SVille Tervo __le16 supervision_timeout; 951*63185f64SVille Tervo __u8 clk_accurancy; 952*63185f64SVille Tervo } __packed; 953*63185f64SVille Tervo 9541da177e4SLinus Torvalds /* Internal events generated by Bluetooth stack */ 955a9de9248SMarcel Holtmann #define HCI_EV_STACK_INTERNAL 0xfd 9561da177e4SLinus Torvalds struct hci_ev_stack_internal { 9571da177e4SLinus Torvalds __u16 type; 9581da177e4SLinus Torvalds __u8 data[0]; 95966c853ccSGustavo F. Padovan } __packed; 9601da177e4SLinus Torvalds 9611da177e4SLinus Torvalds #define HCI_EV_SI_DEVICE 0x01 9621da177e4SLinus Torvalds struct hci_ev_si_device { 9631da177e4SLinus Torvalds __u16 event; 9641da177e4SLinus Torvalds __u16 dev_id; 96566c853ccSGustavo F. Padovan } __packed; 9661da177e4SLinus Torvalds 9671da177e4SLinus Torvalds #define HCI_EV_SI_SECURITY 0x02 9681da177e4SLinus Torvalds struct hci_ev_si_security { 9691da177e4SLinus Torvalds __u16 event; 9701da177e4SLinus Torvalds __u16 proto; 9711da177e4SLinus Torvalds __u16 subproto; 9721da177e4SLinus Torvalds __u8 incoming; 97366c853ccSGustavo F. Padovan } __packed; 9741da177e4SLinus Torvalds 9751da177e4SLinus Torvalds /* ---- HCI Packet structures ---- */ 9761da177e4SLinus Torvalds #define HCI_COMMAND_HDR_SIZE 3 9771da177e4SLinus Torvalds #define HCI_EVENT_HDR_SIZE 2 9781da177e4SLinus Torvalds #define HCI_ACL_HDR_SIZE 4 9791da177e4SLinus Torvalds #define HCI_SCO_HDR_SIZE 3 9801da177e4SLinus Torvalds 9811da177e4SLinus Torvalds struct hci_command_hdr { 9821ebb9252SMarcel Holtmann __le16 opcode; /* OCF & OGF */ 9831da177e4SLinus Torvalds __u8 plen; 98466c853ccSGustavo F. Padovan } __packed; 9851da177e4SLinus Torvalds 9861da177e4SLinus Torvalds struct hci_event_hdr { 9871da177e4SLinus Torvalds __u8 evt; 9881da177e4SLinus Torvalds __u8 plen; 98966c853ccSGustavo F. Padovan } __packed; 9901da177e4SLinus Torvalds 9911da177e4SLinus Torvalds struct hci_acl_hdr { 9921ebb9252SMarcel Holtmann __le16 handle; /* Handle & Flags(PB, BC) */ 9931ebb9252SMarcel Holtmann __le16 dlen; 99466c853ccSGustavo F. Padovan } __packed; 9951da177e4SLinus Torvalds 9961da177e4SLinus Torvalds struct hci_sco_hdr { 9971ebb9252SMarcel Holtmann __le16 handle; 9981da177e4SLinus Torvalds __u8 dlen; 99966c853ccSGustavo F. Padovan } __packed; 10001da177e4SLinus Torvalds 10012a123b86SArnaldo Carvalho de Melo #ifdef __KERNEL__ 10022a123b86SArnaldo Carvalho de Melo #include <linux/skbuff.h> 10032a123b86SArnaldo Carvalho de Melo static inline struct hci_event_hdr *hci_event_hdr(const struct sk_buff *skb) 10042a123b86SArnaldo Carvalho de Melo { 10052a123b86SArnaldo Carvalho de Melo return (struct hci_event_hdr *) skb->data; 10062a123b86SArnaldo Carvalho de Melo } 10072a123b86SArnaldo Carvalho de Melo 10082a123b86SArnaldo Carvalho de Melo static inline struct hci_acl_hdr *hci_acl_hdr(const struct sk_buff *skb) 10092a123b86SArnaldo Carvalho de Melo { 10102a123b86SArnaldo Carvalho de Melo return (struct hci_acl_hdr *) skb->data; 10112a123b86SArnaldo Carvalho de Melo } 10122a123b86SArnaldo Carvalho de Melo 10132a123b86SArnaldo Carvalho de Melo static inline struct hci_sco_hdr *hci_sco_hdr(const struct sk_buff *skb) 10142a123b86SArnaldo Carvalho de Melo { 10152a123b86SArnaldo Carvalho de Melo return (struct hci_sco_hdr *) skb->data; 10162a123b86SArnaldo Carvalho de Melo } 10172a123b86SArnaldo Carvalho de Melo #endif 10182a123b86SArnaldo Carvalho de Melo 10191da177e4SLinus Torvalds /* Command opcode pack/unpack */ 10201da177e4SLinus Torvalds #define hci_opcode_pack(ogf, ocf) (__u16) ((ocf & 0x03ff)|(ogf << 10)) 10211da177e4SLinus Torvalds #define hci_opcode_ogf(op) (op >> 10) 10221da177e4SLinus Torvalds #define hci_opcode_ocf(op) (op & 0x03ff) 10231da177e4SLinus Torvalds 10241da177e4SLinus Torvalds /* ACL handle and flags pack/unpack */ 10251da177e4SLinus Torvalds #define hci_handle_pack(h, f) (__u16) ((h & 0x0fff)|(f << 12)) 10261da177e4SLinus Torvalds #define hci_handle(h) (h & 0x0fff) 10271da177e4SLinus Torvalds #define hci_flags(h) (h >> 12) 10281da177e4SLinus Torvalds 10291da177e4SLinus Torvalds /* ---- HCI Sockets ---- */ 10301da177e4SLinus Torvalds 10311da177e4SLinus Torvalds /* Socket options */ 10321da177e4SLinus Torvalds #define HCI_DATA_DIR 1 10331da177e4SLinus Torvalds #define HCI_FILTER 2 10341da177e4SLinus Torvalds #define HCI_TIME_STAMP 3 10351da177e4SLinus Torvalds 10361da177e4SLinus Torvalds /* CMSG flags */ 10371da177e4SLinus Torvalds #define HCI_CMSG_DIR 0x0001 10381da177e4SLinus Torvalds #define HCI_CMSG_TSTAMP 0x0002 10391da177e4SLinus Torvalds 10401da177e4SLinus Torvalds struct sockaddr_hci { 10411da177e4SLinus Torvalds sa_family_t hci_family; 10421da177e4SLinus Torvalds unsigned short hci_dev; 1043c02178d2SJohan Hedberg unsigned short hci_channel; 10441da177e4SLinus Torvalds }; 10451da177e4SLinus Torvalds #define HCI_DEV_NONE 0xffff 10461da177e4SLinus Torvalds 1047c02178d2SJohan Hedberg #define HCI_CHANNEL_RAW 0 1048c02178d2SJohan Hedberg #define HCI_CHANNEL_CONTROL 1 1049c02178d2SJohan Hedberg 10501da177e4SLinus Torvalds struct hci_filter { 10511da177e4SLinus Torvalds unsigned long type_mask; 10521da177e4SLinus Torvalds unsigned long event_mask[2]; 1053905f3ed6SAl Viro __le16 opcode; 10541da177e4SLinus Torvalds }; 10551da177e4SLinus Torvalds 10561da177e4SLinus Torvalds struct hci_ufilter { 10571da177e4SLinus Torvalds __u32 type_mask; 10581da177e4SLinus Torvalds __u32 event_mask[2]; 1059905f3ed6SAl Viro __le16 opcode; 10601da177e4SLinus Torvalds }; 10611da177e4SLinus Torvalds 10621da177e4SLinus Torvalds #define HCI_FLT_TYPE_BITS 31 10631da177e4SLinus Torvalds #define HCI_FLT_EVENT_BITS 63 10641da177e4SLinus Torvalds #define HCI_FLT_OGF_BITS 63 10651da177e4SLinus Torvalds #define HCI_FLT_OCF_BITS 127 10661da177e4SLinus Torvalds 10671da177e4SLinus Torvalds /* ---- HCI Ioctl requests structures ---- */ 10681da177e4SLinus Torvalds struct hci_dev_stats { 10691da177e4SLinus Torvalds __u32 err_rx; 10701da177e4SLinus Torvalds __u32 err_tx; 10711da177e4SLinus Torvalds __u32 cmd_tx; 10721da177e4SLinus Torvalds __u32 evt_rx; 10731da177e4SLinus Torvalds __u32 acl_tx; 10741da177e4SLinus Torvalds __u32 acl_rx; 10751da177e4SLinus Torvalds __u32 sco_tx; 10761da177e4SLinus Torvalds __u32 sco_rx; 10771da177e4SLinus Torvalds __u32 byte_rx; 10781da177e4SLinus Torvalds __u32 byte_tx; 10791da177e4SLinus Torvalds }; 10801da177e4SLinus Torvalds 10811da177e4SLinus Torvalds struct hci_dev_info { 10821da177e4SLinus Torvalds __u16 dev_id; 10831da177e4SLinus Torvalds char name[8]; 10841da177e4SLinus Torvalds 10851da177e4SLinus Torvalds bdaddr_t bdaddr; 10861da177e4SLinus Torvalds 10871da177e4SLinus Torvalds __u32 flags; 10881da177e4SLinus Torvalds __u8 type; 10891da177e4SLinus Torvalds 10901da177e4SLinus Torvalds __u8 features[8]; 10911da177e4SLinus Torvalds 10921da177e4SLinus Torvalds __u32 pkt_type; 10931da177e4SLinus Torvalds __u32 link_policy; 10941da177e4SLinus Torvalds __u32 link_mode; 10951da177e4SLinus Torvalds 10961da177e4SLinus Torvalds __u16 acl_mtu; 10971da177e4SLinus Torvalds __u16 acl_pkts; 10981da177e4SLinus Torvalds __u16 sco_mtu; 10991da177e4SLinus Torvalds __u16 sco_pkts; 11001da177e4SLinus Torvalds 11011da177e4SLinus Torvalds struct hci_dev_stats stat; 11021da177e4SLinus Torvalds }; 11031da177e4SLinus Torvalds 11041da177e4SLinus Torvalds struct hci_conn_info { 11051da177e4SLinus Torvalds __u16 handle; 11061da177e4SLinus Torvalds bdaddr_t bdaddr; 11071da177e4SLinus Torvalds __u8 type; 11081da177e4SLinus Torvalds __u8 out; 11091da177e4SLinus Torvalds __u16 state; 11101da177e4SLinus Torvalds __u32 link_mode; 11111da177e4SLinus Torvalds }; 11121da177e4SLinus Torvalds 11131da177e4SLinus Torvalds struct hci_dev_req { 11141da177e4SLinus Torvalds __u16 dev_id; 11151da177e4SLinus Torvalds __u32 dev_opt; 11161da177e4SLinus Torvalds }; 11171da177e4SLinus Torvalds 11181da177e4SLinus Torvalds struct hci_dev_list_req { 11191da177e4SLinus Torvalds __u16 dev_num; 11201da177e4SLinus Torvalds struct hci_dev_req dev_req[0]; /* hci_dev_req structures */ 11211da177e4SLinus Torvalds }; 11221da177e4SLinus Torvalds 11231da177e4SLinus Torvalds struct hci_conn_list_req { 11241da177e4SLinus Torvalds __u16 dev_id; 11251da177e4SLinus Torvalds __u16 conn_num; 11261da177e4SLinus Torvalds struct hci_conn_info conn_info[0]; 11271da177e4SLinus Torvalds }; 11281da177e4SLinus Torvalds 11291da177e4SLinus Torvalds struct hci_conn_info_req { 11301da177e4SLinus Torvalds bdaddr_t bdaddr; 11311da177e4SLinus Torvalds __u8 type; 11321da177e4SLinus Torvalds struct hci_conn_info conn_info[0]; 11331da177e4SLinus Torvalds }; 11341da177e4SLinus Torvalds 113540be492fSMarcel Holtmann struct hci_auth_info_req { 113640be492fSMarcel Holtmann bdaddr_t bdaddr; 113740be492fSMarcel Holtmann __u8 type; 113840be492fSMarcel Holtmann }; 113940be492fSMarcel Holtmann 11401da177e4SLinus Torvalds struct hci_inquiry_req { 11411da177e4SLinus Torvalds __u16 dev_id; 11421da177e4SLinus Torvalds __u16 flags; 11431da177e4SLinus Torvalds __u8 lap[3]; 11441da177e4SLinus Torvalds __u8 length; 11451da177e4SLinus Torvalds __u8 num_rsp; 11461da177e4SLinus Torvalds }; 11471da177e4SLinus Torvalds #define IREQ_CACHE_FLUSH 0x0001 11481da177e4SLinus Torvalds 11491da177e4SLinus Torvalds #endif /* __HCI_H */ 1150