1 /****************************************************************************** 2 * 3 * Copyright 1999-2014 Broadcom Corporation 4 * 5 * Licensed under the Apache License, Version 2.0 (the "License"); 6 * you may not use this file except in compliance with the License. 7 * You may obtain a copy of the License at: 8 * 9 * http://www.apache.org/licenses/LICENSE-2.0 10 * 11 * Unless required by applicable law or agreed to in writing, software 12 * distributed under the License is distributed on an "AS IS" BASIS, 13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 * See the License for the specific language governing permissions and 15 * limitations under the License. 16 * 17 ******************************************************************************/ 18 19 #ifndef HCIDEFS_H 20 #define HCIDEFS_H 21 22 #include "stack/include/hci_error_code.h" 23 24 #define HCI_PROTO_VERSION 0x01 /* Version for BT spec 1.1 */ 25 #define HCI_PROTO_VERSION_1_2 0x02 /* Version for BT spec 1.2 */ 26 #define HCI_PROTO_VERSION_2_0 0x03 /* Version for BT spec 2.0 */ 27 #define HCI_PROTO_VERSION_2_1 0x04 /* Version for BT spec 2.1 [Lisbon] */ 28 #define HCI_PROTO_VERSION_3_0 0x05 /* Version for BT spec 3.0 */ 29 #define HCI_PROTO_VERSION_4_0 0x06 /* Version for BT spec 4.0 [LE] */ 30 #define HCI_PROTO_VERSION_4_1 0x07 /* Version for BT spec 4.1 */ 31 #define HCI_PROTO_VERSION_4_2 0x08 /* Version for BT spec 4.2 */ 32 #define HCI_PROTO_VERSION_5_0 0x09 /* Version for BT spec 5.0 */ 33 #define HCI_PROTO_VERSION_5_2 0x0B /* Version for BT spec 5.2 */ 34 35 /* 36 * Definitions for HCI groups 37 */ 38 #define HCI_GRP_LINK_CONTROL_CMDS (0x01 << 10) /* 0x0400 */ 39 #define HCI_GRP_LINK_POLICY_CMDS (0x02 << 10) /* 0x0800 */ 40 #define HCI_GRP_HOST_CONT_BASEBAND_CMDS (0x03 << 10) /* 0x0C00 */ 41 #define HCI_GRP_INFORMATIONAL_PARAMS (0x04 << 10) /* 0x1000 */ 42 #define HCI_GRP_STATUS_PARAMS (0x05 << 10) /* 0x1400 */ 43 #define HCI_GRP_TESTING_CMDS (0x06 << 10) /* 0x1800 */ 44 #define HCI_GRP_BLE_CMDS (0x08 << 10) /* 0x2000 (LE Commands) */ 45 46 #define HCI_GRP_VENDOR_SPECIFIC (0x3F << 10) /* 0xFC00 */ 47 48 /* 49 * Definitions for Link Control Commands 50 */ 51 /* Following opcode is used only in command complete event for flow control */ 52 #define HCI_COMMAND_NONE 0x0000 53 54 /* Commands of HCI_GRP_LINK_CONTROL_CMDS group */ 55 #define HCI_INQUIRY (0x0001 | HCI_GRP_LINK_CONTROL_CMDS) 56 #define HCI_INQUIRY_CANCEL (0x0002 | HCI_GRP_LINK_CONTROL_CMDS) 57 #define HCI_PERIODIC_INQUIRY_MODE (0x0003 | HCI_GRP_LINK_CONTROL_CMDS) 58 #define HCI_EXIT_PERIODIC_INQUIRY_MODE (0x0004 | HCI_GRP_LINK_CONTROL_CMDS) 59 #define HCI_CREATE_CONNECTION (0x0005 | HCI_GRP_LINK_CONTROL_CMDS) 60 #define HCI_DISCONNECT (0x0006 | HCI_GRP_LINK_CONTROL_CMDS) 61 #define HCI_ADD_SCO_CONNECTION (0x0007 | HCI_GRP_LINK_CONTROL_CMDS) 62 #define HCI_CREATE_CONNECTION_CANCEL (0x0008 | HCI_GRP_LINK_CONTROL_CMDS) 63 #define HCI_ACCEPT_CONNECTION_REQUEST (0x0009 | HCI_GRP_LINK_CONTROL_CMDS) 64 #define HCI_REJECT_CONNECTION_REQUEST (0x000A | HCI_GRP_LINK_CONTROL_CMDS) 65 #define HCI_LINK_KEY_REQUEST_REPLY (0x000B | HCI_GRP_LINK_CONTROL_CMDS) 66 #define HCI_LINK_KEY_REQUEST_NEG_REPLY (0x000C | HCI_GRP_LINK_CONTROL_CMDS) 67 #define HCI_PIN_CODE_REQUEST_REPLY (0x000D | HCI_GRP_LINK_CONTROL_CMDS) 68 #define HCI_PIN_CODE_REQUEST_NEG_REPLY (0x000E | HCI_GRP_LINK_CONTROL_CMDS) 69 #define HCI_CHANGE_CONN_PACKET_TYPE (0x000F | HCI_GRP_LINK_CONTROL_CMDS) 70 #define HCI_AUTHENTICATION_REQUESTED (0x0011 | HCI_GRP_LINK_CONTROL_CMDS) 71 #define HCI_SET_CONN_ENCRYPTION (0x0013 | HCI_GRP_LINK_CONTROL_CMDS) 72 #define HCI_CHANGE_CONN_LINK_KEY (0x0015 | HCI_GRP_LINK_CONTROL_CMDS) 73 #define HCI_CENTRAL_LINK_KEY (0x0017 | HCI_GRP_LINK_CONTROL_CMDS) 74 #define HCI_RMT_NAME_REQUEST (0x0019 | HCI_GRP_LINK_CONTROL_CMDS) 75 #define HCI_RMT_NAME_REQUEST_CANCEL (0x001A | HCI_GRP_LINK_CONTROL_CMDS) 76 #define HCI_READ_RMT_FEATURES (0x001B | HCI_GRP_LINK_CONTROL_CMDS) 77 #define HCI_READ_RMT_EXT_FEATURES (0x001C | HCI_GRP_LINK_CONTROL_CMDS) 78 #define HCI_READ_RMT_VERSION_INFO (0x001D | HCI_GRP_LINK_CONTROL_CMDS) 79 #define HCI_READ_RMT_CLOCK_OFFSET (0x001F | HCI_GRP_LINK_CONTROL_CMDS) 80 #define HCI_READ_LMP_HANDLE (0x0020 | HCI_GRP_LINK_CONTROL_CMDS) 81 #define HCI_SETUP_ESCO_CONNECTION (0x0028 | HCI_GRP_LINK_CONTROL_CMDS) 82 #define HCI_ACCEPT_ESCO_CONNECTION (0x0029 | HCI_GRP_LINK_CONTROL_CMDS) 83 #define HCI_REJECT_ESCO_CONNECTION (0x002A | HCI_GRP_LINK_CONTROL_CMDS) 84 #define HCI_IO_CAPABILITY_REQUEST_REPLY (0x002B | HCI_GRP_LINK_CONTROL_CMDS) 85 #define HCI_USER_CONF_REQUEST_REPLY (0x002C | HCI_GRP_LINK_CONTROL_CMDS) 86 #define HCI_USER_CONF_VALUE_NEG_REPLY (0x002D | HCI_GRP_LINK_CONTROL_CMDS) 87 #define HCI_USER_PASSKEY_REQ_REPLY (0x002E | HCI_GRP_LINK_CONTROL_CMDS) 88 #define HCI_USER_PASSKEY_REQ_NEG_REPLY (0x002F | HCI_GRP_LINK_CONTROL_CMDS) 89 #define HCI_REM_OOB_DATA_REQ_REPLY (0x0030 | HCI_GRP_LINK_CONTROL_CMDS) 90 #define HCI_REM_OOB_DATA_REQ_NEG_REPLY (0x0033 | HCI_GRP_LINK_CONTROL_CMDS) 91 #define HCI_IO_CAP_REQ_NEG_REPLY (0x0034 | HCI_GRP_LINK_CONTROL_CMDS) 92 93 /* AMP HCI */ 94 #define HCI_CREATE_PHYSICAL_LINK (0x0035 | HCI_GRP_LINK_CONTROL_CMDS) 95 #define HCI_ACCEPT_PHYSICAL_LINK (0x0036 | HCI_GRP_LINK_CONTROL_CMDS) 96 #define HCI_DISCONNECT_PHYSICAL_LINK (0x0037 | HCI_GRP_LINK_CONTROL_CMDS) 97 #define HCI_CREATE_LOGICAL_LINK (0x0038 | HCI_GRP_LINK_CONTROL_CMDS) 98 #define HCI_ACCEPT_LOGICAL_LINK (0x0039 | HCI_GRP_LINK_CONTROL_CMDS) 99 #define HCI_DISCONNECT_LOGICAL_LINK (0x003A | HCI_GRP_LINK_CONTROL_CMDS) 100 #define HCI_LOGICAL_LINK_CANCEL (0x003B | HCI_GRP_LINK_CONTROL_CMDS) 101 #define HCI_FLOW_SPEC_MODIFY (0x003C | HCI_GRP_LINK_CONTROL_CMDS) 102 103 #define HCI_ENH_SETUP_ESCO_CONNECTION (0x003D | HCI_GRP_LINK_CONTROL_CMDS) 104 #define HCI_ENH_ACCEPT_ESCO_CONNECTION (0x003E | HCI_GRP_LINK_CONTROL_CMDS) 105 106 /* ConnectionLess Broadcast */ 107 #define HCI_TRUNCATED_PAGE (0x003F | HCI_GRP_LINK_CONTROL_CMDS) 108 #define HCI_TRUNCATED_PAGE_CANCEL (0x0040 | HCI_GRP_LINK_CONTROL_CMDS) 109 #define HCI_SET_CLB (0x0041 | HCI_GRP_LINK_CONTROL_CMDS) 110 #define HCI_RECEIVE_CLB (0x0042 | HCI_GRP_LINK_CONTROL_CMDS) 111 #define HCI_START_SYNC_TRAIN (0x0043 | HCI_GRP_LINK_CONTROL_CMDS) 112 #define HCI_RECEIVE_SYNC_TRAIN (0x0044 | HCI_GRP_LINK_CONTROL_CMDS) 113 114 #define HCI_LINK_CTRL_CMDS_FIRST HCI_INQUIRY 115 #define HCI_LINK_CTRL_CMDS_LAST HCI_RECEIVE_SYNC_TRAIN 116 117 /* Commands of HCI_GRP_LINK_POLICY_CMDS */ 118 #define HCI_HOLD_MODE (0x0001 | HCI_GRP_LINK_POLICY_CMDS) 119 #define HCI_SNIFF_MODE (0x0003 | HCI_GRP_LINK_POLICY_CMDS) 120 #define HCI_EXIT_SNIFF_MODE (0x0004 | HCI_GRP_LINK_POLICY_CMDS) 121 #define HCI_PARK_MODE (0x0005 | HCI_GRP_LINK_POLICY_CMDS) 122 #define HCI_EXIT_PARK_MODE (0x0006 | HCI_GRP_LINK_POLICY_CMDS) 123 #define HCI_QOS_SETUP (0x0007 | HCI_GRP_LINK_POLICY_CMDS) 124 #define HCI_ROLE_DISCOVERY (0x0009 | HCI_GRP_LINK_POLICY_CMDS) 125 #define HCI_SWITCH_ROLE (0x000B | HCI_GRP_LINK_POLICY_CMDS) 126 #define HCI_READ_POLICY_SETTINGS (0x000C | HCI_GRP_LINK_POLICY_CMDS) 127 #define HCI_WRITE_POLICY_SETTINGS (0x000D | HCI_GRP_LINK_POLICY_CMDS) 128 #define HCI_READ_DEF_POLICY_SETTINGS (0x000E | HCI_GRP_LINK_POLICY_CMDS) 129 #define HCI_WRITE_DEF_POLICY_SETTINGS (0x000F | HCI_GRP_LINK_POLICY_CMDS) 130 #define HCI_FLOW_SPECIFICATION (0x0010 | HCI_GRP_LINK_POLICY_CMDS) 131 #define HCI_SNIFF_SUB_RATE (0x0011 | HCI_GRP_LINK_POLICY_CMDS) 132 133 #define HCI_LINK_POLICY_CMDS_FIRST HCI_HOLD_MODE 134 #define HCI_LINK_POLICY_CMDS_LAST HCI_SNIFF_SUB_RATE 135 136 /* Commands of HCI_GRP_HOST_CONT_BASEBAND_CMDS */ 137 #define HCI_SET_EVENT_MASK (0x0001 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 138 #define HCI_RESET (0x0003 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 139 #define HCI_SET_EVENT_FILTER (0x0005 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 140 #define HCI_FLUSH (0x0008 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 141 #define HCI_READ_PIN_TYPE (0x0009 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 142 #define HCI_WRITE_PIN_TYPE (0x000A | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 143 #define HCI_GET_MWS_TRANS_LAYER_CFG (0x000C | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 144 #define HCI_READ_STORED_LINK_KEY (0x000D | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 145 #define HCI_WRITE_STORED_LINK_KEY (0x0011 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 146 #define HCI_DELETE_STORED_LINK_KEY (0x0012 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 147 #define HCI_READ_LOCAL_NAME (0x0014 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 148 #define HCI_READ_CONN_ACCEPT_TOUT (0x0015 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 149 #define HCI_WRITE_CONN_ACCEPT_TOUT (0x0016 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 150 #define HCI_READ_PAGE_TOUT (0x0017 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 151 #define HCI_WRITE_PAGE_TOUT (0x0018 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 152 #define HCI_READ_SCAN_ENABLE (0x0019 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 153 #define HCI_WRITE_SCAN_ENABLE (0x001A | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 154 #define HCI_READ_PAGESCAN_CFG (0x001B | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 155 #define HCI_WRITE_PAGESCAN_CFG (0x001C | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 156 #define HCI_READ_INQUIRYSCAN_CFG (0x001D | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 157 #define HCI_WRITE_INQUIRYSCAN_CFG (0x001E | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 158 #define HCI_READ_AUTHENTICATION_ENABLE (0x001F | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 159 #define HCI_WRITE_AUTHENTICATION_ENABLE (0x0020 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 160 #define HCI_READ_ENCRYPTION_MODE (0x0021 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 161 #define HCI_WRITE_ENCRYPTION_MODE (0x0022 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 162 #define HCI_READ_CLASS_OF_DEVICE (0x0023 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 163 #define HCI_WRITE_CLASS_OF_DEVICE (0x0024 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 164 #define HCI_READ_VOICE_SETTINGS (0x0025 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 165 #define HCI_WRITE_VOICE_SETTINGS (0x0026 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 166 #define HCI_READ_AUTOMATIC_FLUSH_TIMEOUT (0x0027 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 167 #define HCI_WRITE_AUTOMATIC_FLUSH_TIMEOUT (0x0028 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 168 #define HCI_READ_NUM_BCAST_REXMITS (0x0029 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 169 #define HCI_WRITE_NUM_BCAST_REXMITS (0x002A | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 170 #define HCI_READ_HOLD_MODE_ACTIVITY (0x002B | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 171 #define HCI_WRITE_HOLD_MODE_ACTIVITY (0x002C | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 172 #define HCI_READ_TRANSMIT_POWER_LEVEL (0x002D | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 173 #define HCI_READ_SCO_FLOW_CTRL_ENABLE (0x002E | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 174 #define HCI_WRITE_SCO_FLOW_CTRL_ENABLE (0x002F | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 175 #define HCI_SET_HC_TO_HOST_FLOW_CTRL (0x0031 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 176 #define HCI_HOST_BUFFER_SIZE (0x0033 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 177 #define HCI_HOST_NUM_PACKETS_DONE (0x0035 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 178 #define HCI_READ_LINK_SUPER_TOUT (0x0036 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 179 #define HCI_WRITE_LINK_SUPER_TOUT (0x0037 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 180 #define HCI_READ_NUM_SUPPORTED_IAC (0x0038 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 181 #define HCI_READ_CURRENT_IAC_LAP (0x0039 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 182 #define HCI_WRITE_CURRENT_IAC_LAP (0x003A | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 183 #define HCI_READ_PAGESCAN_PERIOD_MODE (0x003B | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 184 #define HCI_WRITE_PAGESCAN_PERIOD_MODE (0x003C | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 185 #define HCI_READ_PAGESCAN_MODE (0x003D | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 186 #define HCI_WRITE_PAGESCAN_MODE (0x003E | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 187 #define HCI_SET_AFH_CHANNELS (0x003F | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 188 189 #define HCI_READ_INQSCAN_TYPE (0x0042 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 190 #define HCI_WRITE_INQSCAN_TYPE (0x0043 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 191 #define HCI_READ_INQUIRY_MODE (0x0044 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 192 #define HCI_WRITE_INQUIRY_MODE (0x0045 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 193 #define HCI_READ_PAGESCAN_TYPE (0x0046 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 194 #define HCI_WRITE_PAGESCAN_TYPE (0x0047 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 195 #define HCI_READ_AFH_ASSESSMENT_MODE (0x0048 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 196 #define HCI_WRITE_AFH_ASSESSMENT_MODE (0x0049 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 197 #define HCI_READ_EXT_INQ_RESPONSE (0x0051 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 198 #define HCI_WRITE_EXT_INQ_RESPONSE (0x0052 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 199 #define HCI_REFRESH_ENCRYPTION_KEY (0x0053 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 200 #define HCI_READ_SIMPLE_PAIRING_MODE (0x0055 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 201 #define HCI_WRITE_SIMPLE_PAIRING_MODE (0x0056 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 202 #define HCI_READ_LOCAL_OOB_DATA (0x0057 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 203 #define HCI_READ_INQ_TX_POWER_LEVEL (0x0058 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 204 #define HCI_WRITE_INQ_TX_POWER_LEVEL (0x0059 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 205 #define HCI_READ_ERRONEOUS_DATA_RPT (0x005A | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 206 #define HCI_WRITE_ERRONEOUS_DATA_RPT (0x005B | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 207 #define HCI_ENHANCED_FLUSH (0x005F | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 208 #define HCI_SEND_KEYPRESS_NOTIF (0x0060 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 209 #define HCI_READ_LOCAL_OOB_EXTENDED_DATA (0x007D | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 210 211 /* AMP HCI */ 212 #define HCI_READ_LOGICAL_LINK_ACCEPT_TIMEOUT (0x0061 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 213 #define HCI_WRITE_LOGICAL_LINK_ACCEPT_TIMEOUT (0x0062 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 214 #define HCI_SET_EVENT_MASK_PAGE_2 (0x0063 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 215 #define HCI_READ_LOCATION_DATA (0x0064 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 216 #define HCI_WRITE_LOCATION_DATA (0x0065 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 217 #define HCI_READ_FLOW_CONTROL_MODE (0x0066 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 218 #define HCI_WRITE_FLOW_CONTROL_MODE (0x0067 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 219 #define HCI_READ_BE_FLUSH_TOUT (0x0069 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 220 #define HCI_WRITE_BE_FLUSH_TOUT (0x006A | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 221 /* 802.11 only */ 222 #define HCI_SHORT_RANGE_MODE (0x006B | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 223 #define HCI_READ_LE_HOST_SUPPORT (0x006C | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 224 #define HCI_WRITE_LE_HOST_SUPPORT (0x006D | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 225 226 /* MWS coexistence */ 227 #define HCI_SET_MWS_CHANNEL_PARAMETERS (0x006E | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 228 #define HCI_SET_EXTERNAL_FRAME_CONFIGURATION (0x006F | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 229 #define HCI_SET_MWS_SIGNALING (0x0070 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 230 #define HCI_SET_MWS_TRANSPORT_LAYER (0x0071 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 231 #define HCI_SET_MWS_SCAN_FREQUENCY_TABLE (0x0072 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 232 #define HCI_SET_MWS_PATTERN_CONFIGURATION (0x0073 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 233 234 /* Connectionless Broadcast */ 235 #define HCI_SET_RESERVED_LT_ADDR (0x0074 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 236 #define HCI_DELETE_RESERVED_LT_ADDR (0x0075 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 237 #define HCI_WRITE_CLB_DATA (0x0076 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 238 #define HCI_READ_SYNC_TRAIN_PARAM (0x0077 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 239 #define HCI_WRITE_SYNC_TRAIN_PARAM (0x0078 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 240 241 #define HCI_READ_SECURE_CONNS_SUPPORT (0x0079 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 242 #define HCI_WRITE_SECURE_CONNS_SUPPORT (0x007A | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 243 #define HCI_CONFIGURE_DATA_PATH (0x0083 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 244 #define HCI_CONT_BASEBAND_CMDS_FIRST HCI_SET_EVENT_MASK 245 #define HCI_CONT_BASEBAND_CMDS_LAST HCI_READ_SYNC_TRAIN_PARAM 246 247 /* Commands of HCI_GRP_INFORMATIONAL_PARAMS group */ 248 #define HCI_READ_LOCAL_VERSION_INFO (0x0001 | HCI_GRP_INFORMATIONAL_PARAMS) 249 #define HCI_READ_LOCAL_SUPPORTED_CMDS (0x0002 | HCI_GRP_INFORMATIONAL_PARAMS) 250 #define HCI_READ_LOCAL_FEATURES (0x0003 | HCI_GRP_INFORMATIONAL_PARAMS) 251 #define HCI_READ_LOCAL_EXT_FEATURES (0x0004 | HCI_GRP_INFORMATIONAL_PARAMS) 252 #define HCI_READ_BUFFER_SIZE (0x0005 | HCI_GRP_INFORMATIONAL_PARAMS) 253 #define HCI_READ_COUNTRY_CODE (0x0007 | HCI_GRP_INFORMATIONAL_PARAMS) 254 #define HCI_READ_BD_ADDR (0x0009 | HCI_GRP_INFORMATIONAL_PARAMS) 255 #define HCI_READ_DATA_BLOCK_SIZE (0x000A | HCI_GRP_INFORMATIONAL_PARAMS) 256 #define HCI_READ_LOCAL_SUPPORTED_CODECS (0x000B | HCI_GRP_INFORMATIONAL_PARAMS) 257 258 #define HCI_INFORMATIONAL_CMDS_FIRST HCI_READ_LOCAL_VERSION_INFO 259 #define HCI_INFORMATIONAL_CMDS_LAST HCI_READ_LOCAL_SUPPORTED_CODECS 260 261 /* Commands of HCI_GRP_STATUS_PARAMS group */ 262 #define HCI_READ_FAILED_CONTACT_COUNTER (0x0001 | HCI_GRP_STATUS_PARAMS) 263 #define HCI_RESET_FAILED_CONTACT_COUNTER (0x0002 | HCI_GRP_STATUS_PARAMS) 264 #define HCI_GET_LINK_QUALITY (0x0003 | HCI_GRP_STATUS_PARAMS) 265 #define HCI_READ_RSSI (0x0005 | HCI_GRP_STATUS_PARAMS) 266 #define HCI_READ_AFH_CH_MAP (0x0006 | HCI_GRP_STATUS_PARAMS) 267 #define HCI_READ_CLOCK (0x0007 | HCI_GRP_STATUS_PARAMS) 268 #define HCI_READ_ENCR_KEY_SIZE (0x0008 | HCI_GRP_STATUS_PARAMS) 269 270 /* AMP HCI */ 271 #define HCI_READ_LOCAL_AMP_INFO (0x0009 | HCI_GRP_STATUS_PARAMS) 272 #define HCI_READ_LOCAL_AMP_ASSOC (0x000A | HCI_GRP_STATUS_PARAMS) 273 #define HCI_WRITE_REMOTE_AMP_ASSOC (0x000B | HCI_GRP_STATUS_PARAMS) 274 275 #define HCI_STATUS_PARAMS_CMDS_FIRST HCI_READ_FAILED_CONTACT_COUNTER 276 #define HCI_STATUS_PARAMS_CMDS_LAST HCI_WRITE_REMOTE_AMP_ASSOC 277 278 /* Commands of HCI_GRP_TESTING_CMDS group */ 279 #define HCI_READ_LOOPBACK_MODE (0x0001 | HCI_GRP_TESTING_CMDS) 280 #define HCI_WRITE_LOOPBACK_MODE (0x0002 | HCI_GRP_TESTING_CMDS) 281 #define HCI_ENABLE_DEV_UNDER_TEST_MODE (0x0003 | HCI_GRP_TESTING_CMDS) 282 #define HCI_WRITE_SIMP_PAIR_DEBUG_MODE (0x0004 | HCI_GRP_TESTING_CMDS) 283 284 /* AMP HCI */ 285 #define HCI_ENABLE_AMP_RCVR_REPORTS (0x0007 | HCI_GRP_TESTING_CMDS) 286 #define HCI_AMP_TEST_END (0x0008 | HCI_GRP_TESTING_CMDS) 287 #define HCI_AMP_TEST (0x0009 | HCI_GRP_TESTING_CMDS) 288 289 #define HCI_TESTING_CMDS_FIRST HCI_READ_LOOPBACK_MODE 290 #define HCI_TESTING_CMDS_LAST HCI_AMP_TEST 291 292 #define HCI_VENDOR_CMDS_FIRST 0x0001 293 #define HCI_VENDOR_CMDS_LAST 0xFFFF 294 #define HCI_VSC_MULTI_AV_HANDLE 0x0AAA 295 #define HCI_VSC_BURST_MODE_HANDLE 0x0BBB 296 297 /* BLE HCI Group Commands */ 298 /* Commands of BLE Controller setup and configuration */ 299 #define HCI_BLE_SET_EVENT_MASK (0x0001 | HCI_GRP_BLE_CMDS) 300 #define HCI_BLE_READ_BUFFER_SIZE (0x0002 | HCI_GRP_BLE_CMDS) 301 #define HCI_BLE_READ_LOCAL_SPT_FEAT (0x0003 | HCI_GRP_BLE_CMDS) 302 #define HCI_BLE_WRITE_LOCAL_SPT_FEAT (0x0004 | HCI_GRP_BLE_CMDS) 303 #define HCI_BLE_WRITE_RANDOM_ADDR (0x0005 | HCI_GRP_BLE_CMDS) 304 #define HCI_BLE_WRITE_ADV_PARAMS (0x0006 | HCI_GRP_BLE_CMDS) 305 #define HCI_BLE_READ_ADV_CHNL_TX_POWER (0x0007 | HCI_GRP_BLE_CMDS) 306 #define HCI_BLE_WRITE_ADV_DATA (0x0008 | HCI_GRP_BLE_CMDS) 307 #define HCI_BLE_WRITE_SCAN_RSP_DATA (0x0009 | HCI_GRP_BLE_CMDS) 308 #define HCI_BLE_WRITE_ADV_ENABLE (0x000A | HCI_GRP_BLE_CMDS) 309 #define HCI_BLE_WRITE_SCAN_PARAMS (0x000B | HCI_GRP_BLE_CMDS) 310 #define HCI_BLE_WRITE_SCAN_ENABLE (0x000C | HCI_GRP_BLE_CMDS) 311 #define HCI_BLE_CREATE_LL_CONN (0x000D | HCI_GRP_BLE_CMDS) 312 #define HCI_BLE_CREATE_CONN_CANCEL (0x000E | HCI_GRP_BLE_CMDS) 313 #define HCI_BLE_READ_ACCEPTLIST_SIZE (0x000F | HCI_GRP_BLE_CMDS) 314 #define HCI_BLE_CLEAR_ACCEPTLIST (0x0010 | HCI_GRP_BLE_CMDS) 315 #define HCI_BLE_ADD_ACCEPTLIST (0x0011 | HCI_GRP_BLE_CMDS) 316 #define HCI_BLE_REMOVE_ACCEPTLIST (0x0012 | HCI_GRP_BLE_CMDS) 317 #define HCI_BLE_UPD_LL_CONN_PARAMS (0x0013 | HCI_GRP_BLE_CMDS) 318 #define HCI_BLE_SET_HOST_CHNL_CLASS (0x0014 | HCI_GRP_BLE_CMDS) 319 #define HCI_BLE_READ_CHNL_MAP (0x0015 | HCI_GRP_BLE_CMDS) 320 #define HCI_BLE_READ_REMOTE_FEAT (0x0016 | HCI_GRP_BLE_CMDS) 321 #define HCI_BLE_ENCRYPT (0x0017 | HCI_GRP_BLE_CMDS) 322 #define HCI_BLE_RAND (0x0018 | HCI_GRP_BLE_CMDS) 323 #define HCI_BLE_START_ENC (0x0019 | HCI_GRP_BLE_CMDS) 324 #define HCI_BLE_LTK_REQ_REPLY (0x001A | HCI_GRP_BLE_CMDS) 325 #define HCI_BLE_LTK_REQ_NEG_REPLY (0x001B | HCI_GRP_BLE_CMDS) 326 #define HCI_BLE_READ_SUPPORTED_STATES (0x001C | HCI_GRP_BLE_CMDS) 327 /* 0x001D, 0x001E and 0x001F are reserved */ 328 #define HCI_BLE_RECEIVER_TEST (0x001D | HCI_GRP_BLE_CMDS) 329 #define HCI_BLE_TRANSMITTER_TEST (0x001E | HCI_GRP_BLE_CMDS) 330 /* BLE TEST COMMANDS */ 331 #define HCI_BLE_TEST_END (0x001F | HCI_GRP_BLE_CMDS) 332 #define HCI_BLE_RC_PARAM_REQ_REPLY (0x0020 | HCI_GRP_BLE_CMDS) 333 #define HCI_BLE_RC_PARAM_REQ_NEG_REPLY (0x0021 | HCI_GRP_BLE_CMDS) 334 335 #define HCI_BLE_SET_DATA_LENGTH (0x0022 | HCI_GRP_BLE_CMDS) 336 #define HCI_BLE_READ_DEFAULT_DATA_LENGTH (0x0023 | HCI_GRP_BLE_CMDS) 337 #define HCI_BLE_WRITE_DEFAULT_DATA_LENGTH (0x0024 | HCI_GRP_BLE_CMDS) 338 339 #define HCI_BLE_ADD_DEV_RESOLVING_LIST (0x0027 | HCI_GRP_BLE_CMDS) 340 #define HCI_BLE_RM_DEV_RESOLVING_LIST (0x0028 | HCI_GRP_BLE_CMDS) 341 #define HCI_BLE_CLEAR_RESOLVING_LIST (0x0029 | HCI_GRP_BLE_CMDS) 342 #define HCI_BLE_READ_RESOLVING_LIST_SIZE (0x002A | HCI_GRP_BLE_CMDS) 343 #define HCI_BLE_READ_RESOLVABLE_ADDR_PEER (0x002B | HCI_GRP_BLE_CMDS) 344 #define HCI_BLE_READ_RESOLVABLE_ADDR_LOCAL (0x002C | HCI_GRP_BLE_CMDS) 345 #define HCI_BLE_SET_ADDR_RESOLUTION_ENABLE (0x002D | HCI_GRP_BLE_CMDS) 346 #define HCI_BLE_SET_RAND_PRIV_ADDR_TIMEOUT (0x002E | HCI_GRP_BLE_CMDS) 347 #define HCI_BLE_READ_MAXIMUM_DATA_LENGTH (0x002F | HCI_GRP_BLE_CMDS) 348 #define HCI_BLE_READ_PHY (0x0030 | HCI_GRP_BLE_CMDS) 349 #define HCI_BLE_SET_DEFAULT_PHY (0x0031 | HCI_GRP_BLE_CMDS) 350 #define HCI_BLE_SET_PHY (0x0032 | HCI_GRP_BLE_CMDS) 351 #define HCI_BLE_ENH_RECEIVER_TEST (0x0033 | HCI_GRP_BLE_CMDS) 352 #define HCI_BLE_ENH_TRANSMITTER_TEST (0x0034 | HCI_GRP_BLE_CMDS) 353 #define HCI_LE_SET_EXT_ADVERTISING_RANDOM_ADDRESS (0x35 | HCI_GRP_BLE_CMDS) 354 #define HCI_LE_SET_EXT_ADVERTISING_PARAM (0x36 | HCI_GRP_BLE_CMDS) 355 #define HCI_LE_SET_EXT_ADVERTISING_DATA (0x37 | HCI_GRP_BLE_CMDS) 356 #define HCI_LE_SET_EXT_ADVERTISING_SCAN_RESP (0x38 | HCI_GRP_BLE_CMDS) 357 #define HCI_LE_SET_EXT_ADVERTISING_ENABLE (0x39 | HCI_GRP_BLE_CMDS) 358 #define HCI_LE_READ_MAXIMUM_ADVERTISING_DATA_LENGTH (0x003A | HCI_GRP_BLE_CMDS) 359 #define HCI_LE_READ_NUMBER_OF_SUPPORTED_ADVERTISING_SETS (0x003B | HCI_GRP_BLE_CMDS) 360 #define HCI_LE_REMOVE_ADVERTISING_SET (0x003C | HCI_GRP_BLE_CMDS) 361 #define HCI_LE_CLEAR_ADVERTISING_SETS (0x003D | HCI_GRP_BLE_CMDS) 362 #define HCI_LE_SET_PERIODIC_ADVERTISING_PARAM (0x003E | HCI_GRP_BLE_CMDS) 363 #define HCI_LE_SET_PERIODIC_ADVERTISING_DATA (0x003F | HCI_GRP_BLE_CMDS) 364 #define HCI_LE_SET_PERIODIC_ADVERTISING_ENABLE (0x0040 | HCI_GRP_BLE_CMDS) 365 #define HCI_LE_SET_EXTENDED_SCAN_PARAMETERS (0x0041 | HCI_GRP_BLE_CMDS) 366 #define HCI_LE_SET_EXTENDED_SCAN_ENABLE (0x0042 | HCI_GRP_BLE_CMDS) 367 #define HCI_LE_EXTENDED_CREATE_CONNECTION (0x0043 | HCI_GRP_BLE_CMDS) 368 #define HCI_BLE_PERIODIC_ADVERTISING_CREATE_SYNC (0x0044 | HCI_GRP_BLE_CMDS) 369 #define HCI_BLE_PERIODIC_ADVERTISING_CREATE_SYNC_CANCEL (0x0045 | HCI_GRP_BLE_CMDS) 370 #define HCI_BLE_PERIODIC_ADVERTISING_TERMINATE_SYNC (0x0046 | HCI_GRP_BLE_CMDS) 371 #define HCI_BLE_ADD_DEVICE_TO_PERIODIC_ADVERTISER_LIST (0x0047 | HCI_GRP_BLE_CMDS) 372 #define HCI_BLE_REMOVE_DEVICE_FROM_PERIODIC_ADVERTISER_LIST (0x0048 | HCI_GRP_BLE_CMDS) 373 #define HCI_BLE_CLEAR_PERIODIC_ADVERTISER_LIST (0x0049 | HCI_GRP_BLE_CMDS) 374 #define HCI_BLE_READ_PERIODIC_ADVERTISER_LIST_SIZE (0x004A | HCI_GRP_BLE_CMDS) 375 #define HCI_BLE_READ_TRANSMIT_POWER (0x004B | HCI_GRP_BLE_CMDS) 376 #define HCI_BLE_READ_RF_COMPENS_POWER (0x004C | HCI_GRP_BLE_CMDS) 377 #define HCI_BLE_WRITE_RF_COMPENS_POWER (0x004D | HCI_GRP_BLE_CMDS) 378 #define HCI_BLE_SET_PRIVACY_MODE (0x004E | HCI_GRP_BLE_CMDS) 379 #define HCI_LE_SET_PERIODIC_ADVERTISING_RECEIVE_ENABLE (0x0059 | HCI_GRP_BLE_CMDS) 380 #define HCI_LE_PERIODIC_ADVERTISING_SYNC_TRANSFER (0x005A | HCI_GRP_BLE_CMDS) 381 #define HCI_LE_PERIODIC_ADVERTISING_SET_INFO_TRANSFER (0x005B | HCI_GRP_BLE_CMDS) 382 #define HCI_LE_SET_PERIODIC_ADVERTISING_SYNC_TRANSFER_PARAM (0x005C | HCI_GRP_BLE_CMDS) 383 #define HCI_LE_SET_DEFAULT_PERIODIC_ADVERTISING_SYNC_TRANSFER_PARAM (0x005D | HCI_GRP_BLE_CMDS) 384 #define HCI_BLE_READ_BUFFER_SIZE_V2 (0x0060 | HCI_GRP_BLE_CMDS) 385 #define HCI_LE_SET_HOST_FEATURE (0x0074 | HCI_GRP_BLE_CMDS) 386 387 /* LE Get Vendor Capabilities Command opcode */ 388 #define HCI_BLE_VENDOR_CAP (0x0153 | HCI_GRP_VENDOR_SPECIFIC) 389 #define HCI_LE_READ_ISO_TX_SYNC (0x0061 | HCI_GRP_BLE_CMDS) 390 #define HCI_LE_SET_CIG_PARAMS (0x0062 | HCI_GRP_BLE_CMDS) 391 #define HCI_LE_SET_CIG_PARAMS_TEST (0x0063 | HCI_GRP_BLE_CMDS) 392 #define HCI_LE_CREATE_CIS (0x0064 | HCI_GRP_BLE_CMDS) 393 #define HCI_LE_REMOVE_CIG (0x0065 | HCI_GRP_BLE_CMDS) 394 #define HCI_LE_ACCEPT_CIS_REQ (0x0066 | HCI_GRP_BLE_CMDS) 395 #define HCI_LE_REJ_CIS_REQ (0x0067 | HCI_GRP_BLE_CMDS) 396 #define HCI_LE_CREATE_BIG (0x0068 | HCI_GRP_BLE_CMDS) 397 #define HCI_LE_CREATE_BIG_TEST (0x0069 | HCI_GRP_BLE_CMDS) 398 #define HCI_LE_TERM_BIG (0x006A | HCI_GRP_BLE_CMDS) 399 #define HCI_LE_BIG_CREATE_SYNC (0x006B | HCI_GRP_BLE_CMDS) 400 #define HCI_LE_BIG_TERM_SYNC (0x006C | HCI_GRP_BLE_CMDS) 401 #define HCI_LE_REQ_PEER_SCA (0x006D | HCI_GRP_BLE_CMDS) 402 #define HCI_LE_SETUP_ISO_DATA_PATH (0x006E | HCI_GRP_BLE_CMDS) 403 #define HCI_LE_REMOVE_ISO_DATA_PATH (0x006F | HCI_GRP_BLE_CMDS) 404 #define HCI_LE_ISO_TRANSMIT_TEST (0x0070 | HCI_GRP_BLE_CMDS) 405 #define HCI_LE_ISO_RECEIVE_TEST (0x0071 | HCI_GRP_BLE_CMDS) 406 #define HCI_LE_ISO_READ_TEST_CNTRS (0x0072 | HCI_GRP_BLE_CMDS) 407 #define HCI_LE_ISO_TEST_END (0x0073 | HCI_GRP_BLE_CMDS) 408 #define HCI_LE_SET_HOST_FEATURE (0x0074 | HCI_GRP_BLE_CMDS) 409 #define HCI_LE_READ_ISO_LINK_QUALITY (0x0075 | HCI_GRP_BLE_CMDS) 410 411 /* Multi adv opcode */ 412 #define HCI_BLE_MULTI_ADV (0x0154 | HCI_GRP_VENDOR_SPECIFIC) 413 414 /* ADV filter opcode */ 415 #define HCI_BLE_ADV_FILTER (0x0157 | HCI_GRP_VENDOR_SPECIFIC) 416 417 /* Energy info opcode */ 418 #define HCI_BLE_ENERGY_INFO (0x0159 | HCI_GRP_VENDOR_SPECIFIC) 419 420 /* Controller debug info opcode */ 421 #define HCI_CONTROLLER_DEBUG_INFO (0x015B | HCI_GRP_VENDOR_SPECIFIC) 422 423 /* A2DP offload opcode */ 424 #define HCI_CONTROLLER_A2DP (0x015D | HCI_GRP_VENDOR_SPECIFIC) 425 426 /* Bluetooth Quality Report opcode */ 427 #define HCI_CONTROLLER_BQR (0x015E | HCI_GRP_VENDOR_SPECIFIC) 428 429 /* Bluetooth Dynamic Audio Buffer opcode */ 430 #define HCI_CONTROLLER_DAB (0x015F | HCI_GRP_VENDOR_SPECIFIC) 431 #define HCI_CONTROLLER_DAB_GET_BUFFER_TIME 0x01 432 #define HCI_CONTROLLER_DAB_SET_BUFFER_TIME 0x02 433 434 /* SOC Logging OCF */ 435 #define HCI_VS_HOST_LOG_OPCODE (0x0017 | HCI_GRP_VENDOR_SPECIFIC) 436 437 /* subcode for multi adv feature */ 438 #define BTM_BLE_MULTI_ADV_SET_PARAM 0x01 439 #define BTM_BLE_MULTI_ADV_WRITE_ADV_DATA 0x02 440 #define BTM_BLE_MULTI_ADV_WRITE_SCAN_RSP_DATA 0x03 441 #define BTM_BLE_MULTI_ADV_SET_RANDOM_ADDR 0x04 442 #define BTM_BLE_MULTI_ADV_ENB 0x05 443 444 /* multi adv VSE subcode */ 445 /* multi adv instance state change */ 446 #define HCI_VSE_SUBCODE_BLE_MULTI_ADV_ST_CHG 0x55 447 448 /* subcode for batch scan feature */ 449 #define BTM_BLE_BATCH_SCAN_ENB_DISAB_CUST_FEATURE 0x01 450 #define BTM_BLE_BATCH_SCAN_SET_STORAGE_PARAM 0x02 451 #define BTM_BLE_BATCH_SCAN_SET_PARAMS 0x03 452 #define BTM_BLE_BATCH_SCAN_READ_RESULTS 0x04 453 454 /* batch scan VSE subcode */ 455 #define HCI_VSE_SUBCODE_BLE_THRESHOLD_SUB_EVT 0x54 /* Threshold event */ 456 457 /* tracking sub event */ 458 #define HCI_VSE_SUBCODE_BLE_TRACKING_SUB_EVT 0x56 /* Tracking event */ 459 460 /* debug info sub event */ 461 #define HCI_VSE_SUBCODE_DEBUG_INFO_SUB_EVT 0x57 462 463 /* Bluetooth Quality Report sub event */ 464 #define HCI_VSE_SUBCODE_BQR_SUB_EVT 0x58 465 466 /* LE Supported States */ 467 constexpr uint8_t HCI_LE_STATES_NON_CONN_ADV_BIT = 0; 468 constexpr uint8_t HCI_LE_STATES_SCAN_ADV_BIT = 1; 469 constexpr uint8_t HCI_LE_STATES_CONN_ADV_BIT = 2; 470 constexpr uint8_t HCI_LE_STATES_HI_DUTY_DIR_ADV_BIT = 3; 471 constexpr uint8_t HCI_LE_STATES_PASS_SCAN_BIT = 4; 472 constexpr uint8_t HCI_LE_STATES_ACTIVE_SCAN_BIT = 5; 473 constexpr uint8_t HCI_LE_STATES_INIT_BIT = 6; 474 constexpr uint8_t HCI_LE_STATES_PERIPHERAL_BIT = 7; 475 constexpr uint8_t HCI_LE_STATES_NON_CONN_ADV_PASS_SCAN_BIT = 8; 476 constexpr uint8_t HCI_LE_STATES_SCAN_ADV_PASS_SCAN_BIT = 9; 477 constexpr uint8_t HCI_LE_STATES_CONN_ADV_PASS_SCAN_BIT = 10; 478 constexpr uint8_t HCI_LE_STATES_HI_DUTY_DIR_ADV_PASS_SCAN_BIT = 11; 479 constexpr uint8_t HCI_LE_STATES_NON_CONN_ADV_ACTIVE_SCAN_BIT = 12; 480 constexpr uint8_t HCI_LE_STATES_SCAN_ADV_ACTIVE_SCAN_BIT = 13; 481 constexpr uint8_t HCI_LE_STATES_CONN_ADV_ACTIVE_SCAN_BIT = 14; 482 constexpr uint8_t HCI_LE_STATES_HI_DUTY_DIR_ADV_ACTIVE_SCAN_BIT = 15; 483 constexpr uint8_t HCI_LE_STATES_NON_CONN_INIT_BIT = 16; 484 constexpr uint8_t HCI_LE_STATES_SCAN_ADV_INIT_BIT = 17; 485 constexpr uint8_t HCI_LE_STATES_NON_CONN_ADV_CENTRAL_BIT = 18; 486 constexpr uint8_t HCI_LE_STATES_SCAN_ADV_CENTRAL_BIT = 19; 487 constexpr uint8_t HCI_LE_STATES_NON_CONN_ADV_PERIPHERAL_BIT = 20; 488 constexpr uint8_t HCI_LE_STATES_SCAN_ADV_PERIPHERAL_BIT = 21; 489 constexpr uint8_t HCI_LE_STATES_PASS_SCAN_INIT_BIT = 22; 490 constexpr uint8_t HCI_LE_STATES_ACTIVE_SCAN_INIT_BIT = 23; 491 constexpr uint8_t HCI_LE_STATES_PASS_SCAN_CENTRAL_BIT = 24; 492 constexpr uint8_t HCI_LE_STATES_ACTIVE_SCAN_CENTRAL_BIT = 25; 493 constexpr uint8_t HCI_LE_STATES_PASS_SCAN_PERIPHERAL_BIT = 26; 494 constexpr uint8_t HCI_LE_STATES_ACTIVE_SCAN_PERIPHERAL_BIT = 27; 495 constexpr uint8_t HCI_LE_STATES_INIT_CENTRAL_BIT = 28; 496 constexpr uint8_t HCI_LE_STATES_LOW_DUTY_DIR_ADV_BIT = 29; 497 constexpr uint8_t HCI_LE_STATES_LO_DUTY_DIR_ADV_PASS_SCAN_BIT = 30; 498 constexpr uint8_t HCI_LE_STATES_LO_DUTY_DIR_ADV_ACTIVE_SCAN_BIT = 31; 499 constexpr uint8_t HCI_LE_STATES_CONN_ADV_INIT_BIT = 32; 500 constexpr uint8_t HCI_LE_STATES_HI_DUTY_DIR_ADV_INIT_BIT = 33; 501 constexpr uint8_t HCI_LE_STATES_LO_DUTY_DIR_ADV_INIT_BIT = 34; 502 constexpr uint8_t HCI_LE_STATES_CONN_ADV_CENTRAL_BIT = 35; 503 constexpr uint8_t HCI_LE_STATES_HI_DUTY_DIR_ADV_CENTRAL_BIT = 36; 504 constexpr uint8_t HCI_LE_STATES_LO_DUTY_DIR_ADV_CENTRAL_BIT = 37; 505 constexpr uint8_t HCI_LE_STATES_CONN_ADV_PERIPHERAL_BIT = 38; 506 constexpr uint8_t HCI_LE_STATES_HI_DUTY_DIR_ADV_PERIPHERAL_BIT = 39; 507 constexpr uint8_t HCI_LE_STATES_LO_DUTY_DIR_ADV_PERIPHERAL_BIT = 40; 508 constexpr uint8_t HCI_LE_STATES_INIT_CENTRAL_PERIPHERAL_BIT = 41; 509 510 /* 511 * Definitions for HCI Events 512 */ 513 #define HCI_INQUIRY_COMP_EVT 0x01 514 #define HCI_INQUIRY_RESULT_EVT 0x02 515 #define HCI_CONNECTION_COMP_EVT 0x03 516 #define HCI_CONNECTION_REQUEST_EVT 0x04 517 #define HCI_DISCONNECTION_COMP_EVT 0x05 518 #define HCI_AUTHENTICATION_COMP_EVT 0x06 519 #define HCI_RMT_NAME_REQUEST_COMP_EVT 0x07 520 #define HCI_ENCRYPTION_CHANGE_EVT 0x08 521 #define HCI_CHANGE_CONN_LINK_KEY_EVT 0x09 522 #define HCI_CENTRAL_LINK_KEY_COMP_EVT 0x0A 523 #define HCI_READ_RMT_FEATURES_COMP_EVT 0x0B 524 #define HCI_READ_RMT_VERSION_COMP_EVT 0x0C 525 #define HCI_QOS_SETUP_COMP_EVT 0x0D 526 #define HCI_COMMAND_COMPLETE_EVT 0x0E 527 #define HCI_COMMAND_STATUS_EVT 0x0F 528 #define HCI_HARDWARE_ERROR_EVT 0x10 529 #define HCI_FLUSH_OCCURED_EVT 0x11 530 #define HCI_ROLE_CHANGE_EVT 0x12 531 #define HCI_NUM_COMPL_DATA_PKTS_EVT 0x13 532 #define HCI_MODE_CHANGE_EVT 0x14 533 #define HCI_RETURN_LINK_KEYS_EVT 0x15 534 #define HCI_PIN_CODE_REQUEST_EVT 0x16 535 #define HCI_LINK_KEY_REQUEST_EVT 0x17 536 #define HCI_LINK_KEY_NOTIFICATION_EVT 0x18 537 #define HCI_LOOPBACK_COMMAND_EVT 0x19 538 #define HCI_DATA_BUF_OVERFLOW_EVT 0x1A 539 #define HCI_MAX_SLOTS_CHANGED_EVT 0x1B 540 #define HCI_READ_CLOCK_OFF_COMP_EVT 0x1C 541 #define HCI_CONN_PKT_TYPE_CHANGE_EVT 0x1D 542 #define HCI_QOS_VIOLATION_EVT 0x1E 543 #define HCI_PAGE_SCAN_MODE_CHANGE_EVT 0x1F 544 #define HCI_PAGE_SCAN_REP_MODE_CHNG_EVT 0x20 545 #define HCI_FLOW_SPECIFICATION_COMP_EVT 0x21 546 #define HCI_INQUIRY_RSSI_RESULT_EVT 0x22 547 #define HCI_READ_RMT_EXT_FEATURES_COMP_EVT 0x23 548 #define HCI_ESCO_CONNECTION_COMP_EVT 0x2C 549 #define HCI_ESCO_CONNECTION_CHANGED_EVT 0x2D 550 #define HCI_SNIFF_SUB_RATE_EVT 0x2E 551 #define HCI_EXTENDED_INQUIRY_RESULT_EVT 0x2F 552 #define HCI_ENCRYPTION_KEY_REFRESH_COMP_EVT 0x30 553 #define HCI_IO_CAPABILITY_REQUEST_EVT 0x31 554 #define HCI_IO_CAPABILITY_RESPONSE_EVT 0x32 555 #define HCI_USER_CONFIRMATION_REQUEST_EVT 0x33 556 #define HCI_USER_PASSKEY_REQUEST_EVT 0x34 557 #define HCI_REMOTE_OOB_DATA_REQUEST_EVT 0x35 558 #define HCI_SIMPLE_PAIRING_COMPLETE_EVT 0x36 559 #define HCI_LINK_SUPER_TOUT_CHANGED_EVT 0x38 560 #define HCI_ENHANCED_FLUSH_COMPLETE_EVT 0x39 561 #define HCI_USER_PASSKEY_NOTIFY_EVT 0x3B 562 #define HCI_KEYPRESS_NOTIFY_EVT 0x3C 563 #define HCI_RMT_HOST_SUP_FEAT_NOTIFY_EVT 0x3D 564 #define HCI_ENCRYPTION_CHANGE_EVT_V2 0x59 565 566 /* ULP HCI Event */ 567 #define HCI_BLE_EVENT 0x3e 568 /* ULP Event sub code */ 569 #define HCI_BLE_CONN_COMPLETE_EVT 0x01 570 #define HCI_BLE_ADV_PKT_RPT_EVT 0x02 571 #define HCI_BLE_LL_CONN_PARAM_UPD_EVT 0x03 572 #define HCI_BLE_READ_REMOTE_FEAT_CMPL_EVT 0x04 573 #define HCI_BLE_LTK_REQ_EVT 0x05 574 #define HCI_BLE_RC_PARAM_REQ_EVT 0x06 575 #define HCI_BLE_DATA_LENGTH_CHANGE_EVT 0x07 576 #define HCI_BLE_ENHANCED_CONN_COMPLETE_EVT 0x0a 577 #define HCI_BLE_DIRECT_ADV_EVT 0x0b 578 #define HCI_BLE_PHY_UPDATE_COMPLETE_EVT 0x0c 579 #define HCI_LE_EXTENDED_ADVERTISING_REPORT_EVT 0x0D 580 #define HCI_BLE_PERIODIC_ADV_SYNC_EST_EVT 0x0E 581 #define HCI_BLE_PERIODIC_ADV_REPORT_EVT 0x0F 582 #define HCI_BLE_PERIODIC_ADV_SYNC_LOST_EVT 0x10 583 #define HCI_BLE_SCAN_TIMEOUT_EVT 0x11 584 #define HCI_LE_ADVERTISING_SET_TERMINATED_EVT 0x12 585 #define HCI_BLE_SCAN_REQ_RX_EVT 0x13 586 #define HCI_BLE_CIS_EST_EVT 0x19 587 #define HCI_BLE_CIS_REQ_EVT 0x1a 588 #define HCI_BLE_CREATE_BIG_CPL_EVT 0x1b 589 #define HCI_BLE_TERM_BIG_CPL_EVT 0x1c 590 #define HCI_BLE_BIG_SYNC_EST_EVT 0x1d 591 #define HCI_BLE_BIG_SYNC_LOST_EVT 0x1e 592 #define HCI_BLE_REQ_PEER_SCA_CPL_EVT 0x1f 593 594 #define HCI_LE_PERIODIC_ADV_SYNC_TRANSFERE_RECEIVED_EVT 0x18 595 #define HCI_LE_BIGINFO_ADVERTISING_REPORT_EVT 0x22 596 #define HCI_LE_SUBRATE_CHANGE_EVT 0x23 597 598 #define HCI_VENDOR_SPECIFIC_EVT 0xFF /* Vendor specific events */ 599 600 /* 601 * Definitions for HCI enable event 602 */ 603 #define HCI_INQUIRY_RESULT_EV(p) (*((uint32_t*)(p)) & 0x00000002) 604 #define HCI_CONNECTION_COMPLETE_EV(p) (*((uint32_t*)(p)) & 0x00000004) 605 #define HCI_CONNECTION_REQUEST_EV(p) (*((uint32_t*)(p)) & 0x00000008) 606 #define HCI_DISCONNECTION_COMPLETE_EV(p) (*((uint32_t*)(p)) & 0x00000010) 607 #define HCI_AUTHENTICATION_COMPLETE_EV(p) (*((uint32_t*)(p)) & 0x00000020) 608 #define HCI_RMT_NAME_REQUEST_COMPL_EV(p) (*((uint32_t*)(p)) & 0x00000040) 609 #define HCI_CHANGE_CONN_ENCRPT_ENABLE_EV(p) (*((uint32_t*)(p)) & 0x00000080) 610 #define HCI_CHANGE_CONN_LINK_KEY_EV(p) (*((uint32_t*)(p)) & 0x00000100) 611 #define HCI_CENTRAL_LINK_KEY_COMPLETE_EV(p) (*((uint32_t*)(p)) & 0x00000200) 612 #define HCI_READ_RMT_FEATURES_COMPL_EV(p) (*((uint32_t*)(p)) & 0x00000400) 613 #define HCI_READ_RMT_VERSION_COMPL_EV(p) (*((uint32_t*)(p)) & 0x00000800) 614 #define HCI_QOS_SETUP_COMPLETE_EV(p) (*((uint32_t*)(p)) & 0x00001000) 615 #define HCI_COMMAND_COMPLETE_EV(p) (*((uint32_t*)(p)) & 0x00002000) 616 #define HCI_COMMAND_STATUS_EV(p) (*((uint32_t*)(p)) & 0x00004000) 617 #define HCI_HARDWARE_ERROR_EV(p) (*((uint32_t*)(p)) & 0x00008000) 618 #define HCI_FLASH_OCCURED_EV(p) (*((uint32_t*)(p)) & 0x00010000) 619 #define HCI_ROLE_CHANGE_EV(p) (*((uint32_t*)(p)) & 0x00020000) 620 #define HCI_NUM_COMPLETED_PKTS_EV(p) (*((uint32_t*)(p)) & 0x00040000) 621 #define HCI_MODE_CHANGE_EV(p) (*((uint32_t*)(p)) & 0x00080000) 622 #define HCI_RETURN_LINK_KEYS_EV(p) (*((uint32_t*)(p)) & 0x00100000) 623 #define HCI_PIN_CODE_REQUEST_EV(p) (*((uint32_t*)(p)) & 0x00200000) 624 #define HCI_LINK_KEY_REQUEST_EV(p) (*((uint32_t*)(p)) & 0x00400000) 625 #define HCI_LINK_KEY_NOTIFICATION_EV(p) (*((uint32_t*)(p)) & 0x00800000) 626 #define HCI_LOOPBACK_COMMAND_EV(p) (*((uint32_t*)(p)) & 0x01000000) 627 #define HCI_DATA_BUF_OVERFLOW_EV(p) (*((uint32_t*)(p)) & 0x02000000) 628 #define HCI_MAX_SLOTS_CHANGE_EV(p) (*((uint32_t*)(p)) & 0x04000000) 629 #define HCI_READ_CLOCK_OFFSET_COMP_EV(p) (*((uint32_t*)(p)) & 0x08000000) 630 #define HCI_CONN_PKT_TYPE_CHANGED_EV(p) (*((uint32_t*)(p)) & 0x10000000) 631 #define HCI_QOS_VIOLATION_EV(p) (*((uint32_t*)(p)) & 0x20000000) 632 #define HCI_PAGE_SCAN_MODE_CHANGED_EV(p) (*((uint32_t*)(p)) & 0x40000000) 633 #define HCI_PAGE_SCAN_REP_MODE_CHNG_EV(p) (*((uint32_t*)(p)) & 0x80000000) 634 635 /* the event mask for 2.0 + EDR and later (includes Lisbon events) */ 636 #define HCI_DUMO_EVENT_MASK_EXT \ 637 { 0x3D, 0xBF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF } 638 /* 0x00001FFF FFFFFFFF Default - no Lisbon events 639 0x00000800 00000000 Synchronous Connection Complete Event 640 0x00001000 00000000 Synchronous Connection Changed Event 641 0x00002000 00000000 Sniff Subrate Event 642 0x00004000 00000000 Extended Inquiry Result Event 643 0x00008000 00000000 Encryption Key Refresh Complete Event 644 0x00010000 00000000 IO Capability Request Event 645 0x00020000 00000000 IO Capability Response Event 646 0x00040000 00000000 User Confirmation Request Event 647 0x00080000 00000000 User Passkey Request Event 648 0x00100000 00000000 Remote OOB Data Request Event 649 0x00200000 00000000 Simple Pairing Complete Event 650 0x00400000 00000000 Generic AMP Link Key Notification Event 651 0x00800000 00000000 Link Supervision Timeout Changed Event 652 0x01000000 00000000 Enhanced Flush Complete Event 653 0x04000000 00000000 User Passkey Notification Event 654 0x08000000 00000000 Keypress Notification Event 655 0x10000000 00000000 Remote Host Supported Features Notification Event 656 0x20000000 00000000 LE Meta Event 657 */ 658 659 /* 660 * Definitions for packet type masks (BT1.2 and BT2.0 definitions) 661 */ 662 typedef enum : uint16_t { 663 HCI_PKT_TYPES_MASK_NO_2_DH1 = 0x0002, 664 HCI_PKT_TYPES_MASK_NO_3_DH1 = 0x0004, 665 HCI_PKT_TYPES_MASK_DM1 = 0x0008, 666 HCI_PKT_TYPES_MASK_DH1 = 0x0010, 667 HCI_PKT_TYPES_MASK_HV1 = 0x0020, 668 HCI_PKT_TYPES_MASK_HV2 = 0x0040, 669 HCI_PKT_TYPES_MASK_HV3 = 0x0080, 670 HCI_PKT_TYPES_MASK_NO_2_DH3 = 0x0100, 671 HCI_PKT_TYPES_MASK_NO_3_DH3 = 0x0200, 672 HCI_PKT_TYPES_MASK_DM3 = 0x0400, 673 HCI_PKT_TYPES_MASK_DH3 = 0x0800, 674 HCI_PKT_TYPES_MASK_NO_2_DH5 = 0x1000, 675 HCI_PKT_TYPES_MASK_NO_3_DH5 = 0x2000, 676 HCI_PKT_TYPES_MASK_DM5 = 0x4000, 677 HCI_PKT_TYPES_MASK_DH5 = 0x8000, 678 } tHCI_PKT_TYPE_BITMASK; 679 680 /* 681 * Define parameters to allow role switch during create connection 682 */ 683 #define HCI_CR_CONN_NOT_ALLOW_SWITCH 0x00 684 #define HCI_CR_CONN_ALLOW_SWITCH 0x01 685 686 /* Page scan period modes */ 687 #define HCI_PAGE_SCAN_REP_MODE_R1 0x01 688 #define HCI_PAGE_SCAN_REP_MODE_RESERVED_START 0x03 689 690 /* Page scan modes */ 691 #define HCI_MANDATARY_PAGE_SCAN_MODE 0x00 692 693 /* Page and inquiry scan types */ 694 #define HCI_SCAN_TYPE_STANDARD 0x00 695 #define HCI_DEF_SCAN_TYPE HCI_SCAN_TYPE_STANDARD 696 697 /* Definitions for Extended Inquiry Response */ 698 #define HCI_EXT_INQ_RESPONSE_LEN 240 699 #define HCI_EIR_FLAGS_TYPE 0x01 700 #define HCI_EIR_MORE_16BITS_UUID_TYPE 0x02 701 #define HCI_EIR_COMPLETE_16BITS_UUID_TYPE 0x03 702 #define HCI_EIR_MORE_32BITS_UUID_TYPE 0x04 703 #define HCI_EIR_COMPLETE_32BITS_UUID_TYPE 0x05 704 #define HCI_EIR_MORE_128BITS_UUID_TYPE 0x06 705 #define HCI_EIR_COMPLETE_128BITS_UUID_TYPE 0x07 706 #define HCI_EIR_SHORTENED_LOCAL_NAME_TYPE 0x08 707 #define HCI_EIR_COMPLETE_LOCAL_NAME_TYPE 0x09 708 #define HCI_EIR_TX_POWER_LEVEL_TYPE 0x0A 709 #define HCI_EIR_MANUFACTURER_SPECIFIC_TYPE 0xFF 710 #define HCI_EIR_SERVICE_DATA_TYPE 0x16 711 #define HCI_EIR_SERVICE_DATA_16BITS_UUID_TYPE 0x16 712 #define HCI_EIR_SERVICE_DATA_32BITS_UUID_TYPE 0x20 713 #define HCI_EIR_SERVICE_DATA_128BITS_UUID_TYPE 0x21 714 #define HCI_EIR_OOB_BD_ADDR_TYPE 0x0C 715 #define HCI_EIR_OOB_COD_TYPE 0x0D 716 #define HCI_EIR_OOB_SSP_HASH_C_TYPE 0x0E 717 #define HCI_EIR_OOB_SSP_RAND_R_TYPE 0x0F 718 #define HCI_EIR_RSI_TYPE 0x2E 719 #define HCI_EIR_APPEARANCE_TYPE 0x19 720 721 /* Definitions for Write Simple Pairing Mode */ 722 #define HCI_SP_MODE_ENABLED 0x01 723 724 /* Definitions for Write Secure Connections Host Support */ 725 #define HCI_SC_MODE_ENABLED 0x01 726 727 /* Filters that are sent in set filter command */ 728 #define HCI_FILTER_CONNECTION_SETUP 0x02 729 730 #define HCI_FILTER_COND_NEW_DEVICE 0x00 731 #define HCI_FILTER_COND_DEVICE_CLASS 0x01 732 #define HCI_FILTER_COND_BD_ADDR 0x02 733 734 /* role switch disabled */ 735 #define HCI_DO_AUTO_ACCEPT_CONNECT 2 736 737 /* PIN type */ 738 #define HCI_PIN_TYPE_FIXED 1 739 740 /* Scan enable flags */ 741 #define HCI_INQUIRY_SCAN_ENABLED 0x01 742 #define HCI_PAGE_SCAN_ENABLED 0x02 743 744 /* Pagescan timer definitions in 0.625 ms */ 745 #define HCI_DEF_PAGESCAN_INTERVAL 0x0800 /* 1.28 sec */ 746 747 /* Parameter for pagescan window is passed to LC and is kept in slots */ 748 #define HCI_DEF_PAGESCAN_WINDOW 0x12 /* 11.25 ms */ 749 750 /* Inquiryscan timer definitions in 0.625 ms */ 751 #define HCI_DEF_INQUIRYSCAN_INTERVAL 0x1000 /* 2.56 sec */ 752 753 /* Parameter for inquiryscan window is passed to LC and is kept in slots */ 754 #define HCI_DEF_INQUIRYSCAN_WINDOW 0x12 /* 11.25 ms */ 755 756 /* Encryption modes */ 757 typedef enum : uint8_t { 758 HCI_ENCRYPT_MODE_DISABLED = 0x00, 759 HCI_ENCRYPT_MODE_ON = 0x01, 760 HCI_ENCRYPT_MODE_ON_BR_EDR_AES_CCM = 0x02, 761 } tHCI_ENCRYPT_MODE; 762 763 /* Voice settings */ 764 #define HCI_INP_CODING_LINEAR 0x0000 /* 0000000000 */ 765 #define HCI_INP_CODING_U_LAW 0x0100 /* 0100000000 */ 766 #define HCI_INP_CODING_A_LAW 0x0200 /* 1000000000 */ 767 768 #define HCI_INP_DATA_FMT_2S_COMPLEMENT 0x0040 /* 0001000000 */ 769 #define HCI_INP_DATA_FMT_SIGN_MAGNITUDE 0x0080 /* 0010000000 */ 770 #define HCI_INP_DATA_FMT_UNSIGNED 0x00c0 /* 0011000000 */ 771 772 #define HCI_INP_SAMPLE_SIZE_8BIT 0x0000 /* 0000000000 */ 773 #define HCI_INP_SAMPLE_SIZE_16BIT 0x0020 /* 0000100000 */ 774 775 #define HCI_INP_LINEAR_PCM_BIT_POS_OFFS 2 776 777 #define HCI_AIR_CODING_FORMAT_CVSD 0x0000 /* 0000000000 */ 778 #define HCI_AIR_CODING_FORMAT_U_LAW 0x0001 /* 0000000001 */ 779 #define HCI_AIR_CODING_FORMAT_A_LAW 0x0002 /* 0000000010 */ 780 #define HCI_AIR_CODING_FORMAT_TRANSPNT 0x0003 /* 0000000011 */ 781 #define HCI_AIR_CODING_FORMAT_MASK 0x0003 /* 0000000011 */ 782 783 /* default 0001100000 */ 784 #define HCI_DEFAULT_VOICE_SETTINGS \ 785 (HCI_INP_CODING_LINEAR | HCI_INP_DATA_FMT_2S_COMPLEMENT | HCI_INP_SAMPLE_SIZE_16BIT | \ 786 HCI_AIR_CODING_FORMAT_CVSD) 787 788 /* Retransmit timer definitions in 0.625 */ 789 #define HCI_MAX_AUTOMATIC_FLUSH_TIMEOUT 0x07FF 790 791 /* Default Link Supervision timeoout */ 792 #define HCI_DEFAULT_INACT_TOUT 0x7D00 /* BR/EDR (20 seconds) */ 793 794 /* Read transmit power level parameter */ 795 #define HCI_READ_CURRENT 0x00 796 797 /* Link types for connection complete event */ 798 #define HCI_LINK_TYPE_SCO 0x00 799 #define HCI_LINK_TYPE_ACL 0x01 800 #define HCI_LINK_TYPE_ESCO 0x02 801 802 /* Link Key Notification Event (Key Type) definitions */ 803 #define HCI_LKEY_TYPE_COMBINATION 0x00 804 #define HCI_LKEY_TYPE_REMOTE_UNIT 0x02 805 #define HCI_LKEY_TYPE_DEBUG_COMB 0x03 806 #define HCI_LKEY_TYPE_UNAUTH_COMB 0x04 807 #define HCI_LKEY_TYPE_AUTH_COMB 0x05 808 #define HCI_LKEY_TYPE_CHANGED_COMB 0x06 809 #define HCI_LKEY_TYPE_UNAUTH_COMB_P_256 0x07 810 #define HCI_LKEY_TYPE_AUTH_COMB_P_256 0x08 811 812 /* Define an invalid value for a handle */ 813 #define HCI_INVALID_HANDLE 0xFFFF 814 815 /* Define the max valid value for a connection handle */ 816 #define HCI_HANDLE_MAX 0xEFF 817 818 /* Define the preamble length for all HCI Commands. 819 * This is 2-bytes for opcode and 1 byte for length 820 */ 821 #define HCIC_PREAMBLE_SIZE 3 822 823 /* Define the preamble length for all HCI Events 824 * This is 1-byte for opcode and 1 byte for length 825 */ 826 #define HCIE_PREAMBLE_SIZE 2 827 828 // Packet boundary flags 829 constexpr uint8_t kFIRST_NON_AUTOMATICALLY_FLUSHABLE = 0x0; 830 constexpr uint8_t kCONTINUING_FRAGMENT = 0x1; 831 constexpr uint8_t kHCI_FIRST_AUTOMATICALLY_FLUSHABLE = 0x2; 832 833 struct HciDataPreambleBits { 834 uint16_t handle : 12; 835 uint16_t boundary : 2; 836 uint16_t broadcast : 1; 837 uint16_t unused15 : 1; 838 uint16_t length; 839 }; 840 struct HciDataPreambleRaw { 841 uint16_t word0; 842 uint16_t word1; 843 }; 844 union HciDataPreamble { 845 HciDataPreambleBits bits; 846 HciDataPreambleRaw raw; Serialize(uint8_t * data)847 void Serialize(uint8_t* data) { 848 *data++ = ((raw.word0) & 0xff); 849 *data++ = (((raw.word0) >> 8) & 0xff); 850 *data++ = ((raw.word1) & 0xff); 851 *data++ = ((raw.word1 >> 8) & 0xff); 852 } IsFlushable()853 bool IsFlushable() const { return bits.boundary == kHCI_FIRST_AUTOMATICALLY_FLUSHABLE; } SetFlushable()854 void SetFlushable() { bits.boundary = kHCI_FIRST_AUTOMATICALLY_FLUSHABLE; } 855 }; 856 #define HCI_DATA_PREAMBLE_SIZE sizeof(HciDataPreamble) 857 static_assert(HCI_DATA_PREAMBLE_SIZE == 4); 858 static_assert(sizeof(HciDataPreambleRaw) == sizeof(HciDataPreambleBits)); 859 860 /* local Bluetooth controller id for AMP HCI */ 861 #define LOCAL_BR_EDR_CONTROLLER_ID 0 862 863 /* Define the extended flow specification fields used by AMP */ 864 typedef struct { 865 uint8_t id; 866 uint8_t stype; 867 uint16_t max_sdu_size; 868 uint32_t sdu_inter_time; 869 uint32_t access_latency; 870 uint32_t flush_timeout; 871 } tHCI_EXT_FLOW_SPEC; 872 873 /* Parameter information for HCI_BRCM_SET_ACL_PRIORITY */ 874 #define HCI_BRCM_ACL_PRIORITY_PARAM_SIZE 3 875 #define HCI_BRCM_SET_ACL_PRIORITY (0x0057 | HCI_GRP_VENDOR_SPECIFIC) 876 #define HCI_BRCM_ACL_NORMAL_PRIORITY 0x00 877 #define HCI_BRCM_ACL_HIGH_PRIORITY 0xFF 878 #define HCI_BRCM_ACL_HIGH_PRIORITY_LOW_LATENCY 0xF3 879 880 #define LMP_COMPID_GOOGLE 0xE0 881 #define LMP_COMPID_INTEL 0x02 882 883 // TODO(zachoverflow): remove this once broadcom specific hacks are removed 884 #define LMP_COMPID_BROADCOM 15 885 886 // TODO: Remove this once Synaptics specific code is removed 887 #define LMP_COMPID_SYNAPTICS 0x0A76 888 889 // TODO Remove this once all QTI specific hacks are removed. 890 #define LMP_COMPID_QTI 0x001D 891 892 // TODO Remove this once all UNISOC specific hacks are removed. 893 #define LMP_COMPID_UNISOC 0x073F 894 895 // TODO Remove this once all Mediatek specific hacks are removed. 896 #define LMP_COMPID_MEDIATEK 0x0046 897 898 #define LMP_SUBVERSION_INTEL_AC7265 0x1100 899 900 /* Parameter information for HCI_SYNA_SET_ACL_PRIORITY */ 901 #define HCI_SYNA_ACL_PRIORITY_PARAM_SIZE 3 902 #define HCI_SYNA_ACL_NORMAL_PRIORITY 0xF0 903 #define HCI_SYNA_ACL_HIGH_PRIORITY 0xF2 904 #define HCI_SYNA_ACL_HIGH_PRIORITY_LOW_LATENCY 0xF3 905 #define HCI_SYNA_SET_ACL_PRIORITY (0x0057 | HCI_GRP_VENDOR_SPECIFIC) 906 907 /* Parameter information for HCI_UNISOC_SET_ACL_PRIORITY */ 908 #define HCI_UNISOC_ACL_PRIORITY_PARAM_SIZE 3 909 #define HCI_UNISOC_SET_ACL_PRIORITY (0x0057 | HCI_GRP_VENDOR_SPECIFIC) 910 #define HCI_UNISOC_ACL_NORMAL_PRIORITY 0x00 911 #define HCI_UNISOC_ACL_HIGH_PRIORITY 0xFF 912 913 /* Parameter information for HCI_MTK_SET_ACL_PRIORITY */ 914 #define HCI_MTK_ACL_PRIORITY_PARAM_SIZE 4 915 #define HCI_MTK_SET_ACL_PRIORITY (0xFD95 | HCI_GRP_VENDOR_SPECIFIC) 916 #define HCI_MTK_ACL_NORMAL_PRIORITY 0x00 917 #define HCI_MTK_ACL_HIGH_PRIORITY 0x01 918 919 /* 920 * Define packet size 921 */ 922 #define HCI_DM1_PACKET_SIZE 17 923 #define HCI_DH1_PACKET_SIZE 27 924 #define HCI_DM3_PACKET_SIZE 121 925 #define HCI_DH3_PACKET_SIZE 183 926 #define HCI_DM5_PACKET_SIZE 224 927 #define HCI_DH5_PACKET_SIZE 339 928 #define HCI_AUX1_PACKET_SIZE 29 929 #define HCI_HV1_PACKET_SIZE 10 930 #define HCI_HV2_PACKET_SIZE 20 931 #define HCI_HV3_PACKET_SIZE 30 932 #define HCI_DV_PACKET_SIZE 9 933 #define HCI_EDR2_DH1_PACKET_SIZE 54 934 #define HCI_EDR2_DH3_PACKET_SIZE 367 935 #define HCI_EDR2_DH5_PACKET_SIZE 679 936 #define HCI_EDR3_DH1_PACKET_SIZE 83 937 #define HCI_EDR3_DH3_PACKET_SIZE 552 938 #define HCI_EDR3_DH5_PACKET_SIZE 1021 939 940 /* Feature Pages */ 941 #define HCI_EXT_FEATURES_PAGE_MAX 3 // Parse feature pages 0-3 942 943 #define HCI_FEATURE_BYTES_PER_PAGE 8 944 945 #define HCI_EXT_FEATURES_SUCCESS_EVT_LEN 13 946 947 /* LMP features encoding - page 0 */ 948 #define HCI_3_SLOT_PACKETS_SUPPORTED(x) ((x)[0] & 0x01) 949 #define HCI_5_SLOT_PACKETS_SUPPORTED(x) ((x)[0] & 0x02) 950 #define HCI_ENCRYPTION_SUPPORTED(x) ((x)[0] & 0x04) 951 #define HCI_SLOT_OFFSET_SUPPORTED(x) ((x)[0] & 0x08) 952 #define HCI_TIMING_ACC_SUPPORTED(x) ((x)[0] & 0x10) 953 #define HCI_SWITCH_SUPPORTED(x) ((x)[0] & 0x20) 954 #define HCI_HOLD_MODE_SUPPORTED(x) ((x)[0] & 0x40) 955 #define HCI_SNIFF_MODE_SUPPORTED(x) ((x)[0] & 0x80) 956 957 #define HCI_PARK_MODE_SUPPORTED(x) ((x)[1] & 0x01) 958 #define HCI_RSSI_SUPPORTED(x) ((x)[1] & 0x02) 959 #define HCI_CQM_DATA_RATE_SUPPORTED(x) ((x)[1] & 0x04) 960 #define HCI_SCO_LINK_SUPPORTED(x) ((x)[1] & 0x08) 961 #define HCI_HV2_PACKETS_SUPPORTED(x) ((x)[1] & 0x10) 962 #define HCI_HV3_PACKETS_SUPPORTED(x) ((x)[1] & 0x20) 963 #define HCI_LMP_U_LAW_SUPPORTED(x) ((x)[1] & 0x40) 964 #define HCI_LMP_A_LAW_SUPPORTED(x) ((x)[1] & 0x80) 965 966 #define HCI_LMP_CVSD_SUPPORTED(x) ((x)[2] & 0x01) 967 #define HCI_PAGING_SCHEME_SUPPORTED(x) ((x)[2] & 0x02) 968 #define HCI_POWER_CTRL_SUPPORTED(x) ((x)[2] & 0x04) 969 #define HCI_LMP_TRANSPNT_SUPPORTED(x) ((x)[2] & 0x08) 970 #define HCI_FLOW_CTRL_LAG_VALUE(x) (((x)[2] & 0x70) >> 4) 971 #define HCI_LMP_BCAST_ENC_SUPPORTED(x) ((x)[2] & 0x80) 972 973 #define HCI_LMP_SCATTER_MODE_SUPPORTED(x) ((x)[3] & 0x01) 974 #define HCI_EDR_ACL_2MPS_SUPPORTED(x) ((x)[3] & 0x02) 975 #define HCI_EDR_ACL_3MPS_SUPPORTED(x) ((x)[3] & 0x04) 976 #define HCI_ENHANCED_INQ_SUPPORTED(x) ((x)[3] & 0x08) 977 #define HCI_LMP_INTERLACED_INQ_SCAN_SUPPORTED(x) ((x)[3] & 0x10) 978 #define HCI_LMP_INTERLACED_PAGE_SCAN_SUPPORTED(x) ((x)[3] & 0x20) 979 #define HCI_LMP_INQ_RSSI_SUPPORTED(x) ((x)[3] & 0x40) 980 #define HCI_ESCO_EV3_SUPPORTED(x) ((x)[3] & 0x80) 981 982 #define HCI_ESCO_EV4_SUPPORTED(x) ((x)[4] & 0x01) 983 #define HCI_ESCO_EV5_SUPPORTED(x) ((x)[4] & 0x02) 984 #define HCI_LMP_ABSENCE_MASKS_SUPPORTED(x) ((x)[4] & 0x04) 985 #define HCI_LMP_AFH_CAP_PERIPHERAL_SUPPORTED(x) ((x)[4] & 0x08) 986 #define HCI_LMP_AFH_CLASS_PERIPHERAL_SUPPORTED(x) ((x)[4] & 0x10) 987 #define HCI_BREDR_NOT_SPT_SUPPORTED(x) ((x)[4] & 0x20) 988 #define HCI_LE_SPT_SUPPORTED(x) ((x)[4] & 0x40) 989 #define HCI_3_SLOT_EDR_ACL_SUPPORTED(x) ((x)[4] & 0x80) 990 991 #define HCI_5_SLOT_EDR_ACL_SUPPORTED(x) ((x)[5] & 0x01) 992 #define HCI_SNIFF_SUB_RATE_SUPPORTED(x) (static_cast<bool>((x)[5] & 0x02)) 993 #define HCI_ATOMIC_ENCRYPT_SUPPORTED(x) ((x)[5] & 0x04) 994 #define HCI_LMP_AFH_CAP_MASTR_SUPPORTED(x) ((x)[5] & 0x08) 995 #define HCI_LMP_AFH_CLASS_MASTR_SUPPORTED(x) ((x)[5] & 0x10) 996 #define HCI_EDR_ESCO_2MPS_SUPPORTED(x) ((x)[5] & 0x20) 997 #define HCI_EDR_ESCO_3MPS_SUPPORTED(x) ((x)[5] & 0x40) 998 #define HCI_3_SLOT_EDR_ESCO_SUPPORTED(x) ((x)[5] & 0x80) 999 1000 #define HCI_EXT_INQ_RSP_SUPPORTED(x) ((x)[6] & 0x01) 1001 #define HCI_SIMUL_LE_BREDR_SUPPORTED(x) ((x)[6] & 0x02) 1002 #define HCI_ANUM_PIN_CAP_SUPPORTED(x) ((x)[6] & 0x04) 1003 #define HCI_SIMPLE_PAIRING_SUPPORTED(x) ((x)[6] & 0x08) 1004 #define HCI_ENCAP_PDU_SUPPORTED(x) ((x)[6] & 0x10) 1005 #define HCI_ERROR_DATA_SUPPORTED(x) ((x)[6] & 0x20) 1006 /* This feature is causing frequent link drops when doing call switch with 1007 * certain av/hfp headsets */ 1008 // TODO: move the disabling somewhere else 1009 #define HCI_NON_FLUSHABLE_PB_SUPPORTED(x) (0) // ((x)[6] & 0x40) 1010 #define HCI_LINK_SUP_TO_EVT_SUPPORTED(x) ((x)[7] & 0x01) 1011 #define HCI_INQ_RESP_TX_SUPPORTED(x) ((x)[7] & 0x02) 1012 #define HCI_LMP_EXTENDED_SUPPORTED(x) ((x)[7] & 0x80) 1013 1014 /* LMP features encoding - page 1 */ 1015 #define HCI_SSP_HOST_SUPPORTED(x) ((x)[0] & 0x01) 1016 #define HCI_LE_HOST_SUPPORTED(x) ((x)[0] & 0x02) 1017 #define HCI_SIMUL_DUMO_HOST_SUPPORTED(x) ((x)[0] & 0x04) 1018 #define HCI_SC_HOST_SUPPORTED(x) ((x)[0] & 0x08) 1019 1020 /* LMP features encoding - page 2 */ 1021 #define HCI_CSB_CENTRAL_SUPPORTED(x) ((x)[0] & 0x01) 1022 #define HCI_CSB_PERIPHERAL_SUPPORTED(x) ((x)[0] & 0x02) 1023 #define HCI_SYNC_TRAIN_CENTRAL_SUPPORTED(x) ((x)[0] & 0x04) 1024 #define HCI_SYNC_SCAN_PERIPHERAL_SUPPORTED(x) ((x)[0] & 0x08) 1025 #define HCI_INQ_RESP_NOTIF_SUPPORTED(x) ((x)[0] & 0x10) 1026 1027 #define HCI_SC_CTRLR_SUPPORTED(x) ((x)[1] & 0x01) 1028 #define HCI_PING_SUPPORTED(x) ((x)[1] & 0x02) 1029 1030 /* LE features encoding - page 0 (the only page for now) */ 1031 #define HCI_LE_ENCRYPTION_SUPPORTED(x) ((x)[0] & 0x01) 1032 #define HCI_LE_CONN_PARAM_REQ_SUPPORTED(x) ((x)[0] & 0x02) 1033 #define HCI_LE_EXT_REJ_IND_SUPPORTED(x) ((x)[0] & 0x04) 1034 #define HCI_LE_PERIPHERAL_INIT_FEAT_EXC_SUPPORTED(x) ((x)[0] & 0x08) 1035 #define HCI_LE_DATA_LEN_EXT_SUPPORTED(x) ((x)[0] & 0x20) 1036 #define HCI_LE_ENHANCED_PRIVACY_SUPPORTED(x) ((x)[0] & 0x40) 1037 #define HCI_LE_EXT_SCAN_FILTER_POLICY_SUPPORTED(x) ((x)[0] & 0x80) 1038 1039 #define HCI_LE_2M_PHY_SUPPORTED(x) ((x)[1] & 0x01) 1040 #define HCI_LE_CODED_PHY_SUPPORTED(x) ((x)[1] & 0x08) 1041 #define HCI_LE_EXTENDED_ADVERTISING_SUPPORTED(x) ((x)[1] & 0x10) 1042 #define HCI_LE_PERIODIC_ADVERTISING_SUPPORTED(x) ((x)[1] & 0x20) 1043 #define HCI_LE_PERIODIC_ADVERTISING_SYNC_TRANSFER_SENDER(x) ((x)[3] & 0x01) 1044 #define HCI_LE_PERIODIC_ADVERTISING_SYNC_TRANSFER_RECIPIENT(x) ((x)[3] & 0x02) 1045 #define HCI_LE_CIS_CENTRAL(x) ((x)[3] & 0x10) 1046 #define HCI_LE_CIS_PERIPHERAL(x) ((x)[3] & 0x20) 1047 #define HCI_LE_ISO_BROADCASTER(x) ((x)[3] & 0x40) 1048 #define HCI_LE_SYNCHRONIZED_RECEIVER(x) ((x)[3] & 0x80) 1049 1050 #define HCI_LE_CONN_SUBRATING_SUPPORT(x) ((x)[4] & 0x20) 1051 #define HCI_LE_CONN_SUBRATING_HOST_SUPPORT(x) ((x)[4] & 0x40) 1052 1053 /* Supported Commands*/ 1054 #define HCI_NUM_SUPP_COMMANDS_BYTES 64 1055 1056 #define HCI_INQUIRY_SUPPORTED(x) ((x)[0] & 0x01) 1057 #define HCI_INQUIRY_CANCEL_SUPPORTED(x) ((x)[0] & 0x02) 1058 #define HCI_PERIODIC_INQUIRY_SUPPORTED(x) ((x)[0] & 0x04) 1059 #define HCI_EXIT_PERIODIC_INQUIRY_SUPPORTED(x) ((x)[0] & 0x08) 1060 #define HCI_CREATE_CONN_SUPPORTED(x) ((x)[0] & 0x10) 1061 #define HCI_DISCONNECT_SUPPORTED(x) ((x)[0] & 0x20) 1062 #define HCI_ADD_SCO_CONN_SUPPORTED(x) ((x)[0] & 0x40) 1063 #define HCI_CANCEL_CREATE_CONN_SUPPORTED(x) ((x)[0] & 0x80) 1064 1065 #define HCI_ACCEPT_CONN_REQUEST_SUPPORTED(x) ((x)[1] & 0x01) 1066 #define HCI_REJECT_CONN_REQUEST_SUPPORTED(x) ((x)[1] & 0x02) 1067 #define HCI_LINK_KEY_REQUEST_REPLY_SUPPORTED(x) ((x)[1] & 0x04) 1068 #define HCI_LINK_KEY_REQUEST_NEG_REPLY_SUPPORTED(x) ((x)[1] & 0x08) 1069 #define HCI_PIN_CODE_REQUEST_REPLY_SUPPORTED(x) ((x)[1] & 0x10) 1070 #define HCI_PIN_CODE_REQUEST_NEG_REPLY_SUPPORTED(x) ((x)[1] & 0x20) 1071 #define HCI_CHANGE_CONN_PKT_TYPE_SUPPORTED(x) ((x)[1] & 0x40) 1072 #define HCI_AUTH_REQUEST_SUPPORTED(x) ((x)[1] & 0x80) 1073 1074 #define HCI_SET_CONN_ENCRYPTION_SUPPORTED(x) ((x)[2] & 0x01) 1075 #define HCI_CHANGE_CONN_LINK_KEY_SUPPORTED(x) ((x)[2] & 0x02) 1076 #define HCI_CENTRAL_LINK_KEY_SUPPORTED(x) ((x)[2] & 0x04) 1077 #define HCI_REMOTE_NAME_REQUEST_SUPPORTED(x) ((x)[2] & 0x08) 1078 #define HCI_CANCEL_REMOTE_NAME_REQUEST_SUPPORTED(x) ((x)[2] & 0x10) 1079 #define HCI_READ_REMOTE_SUPP_FEATURES_SUPPORTED(x) ((x)[2] & 0x20) 1080 #define HCI_READ_REMOTE_EXT_FEATURES_SUPPORTED(x) ((x)[2] & 0x40) 1081 #define HCI_READ_REMOTE_VER_INFO_SUPPORTED(x) ((x)[2] & 0x80) 1082 1083 #define HCI_READ_CLOCK_OFFSET_SUPPORTED(x) ((x)[3] & 0x01) 1084 #define HCI_READ_LMP_HANDLE_SUPPORTED(x) ((x)[3] & 0x02) 1085 /* rest of bits in 3-rd byte are reserved */ 1086 1087 #define HCI_HOLD_MODE_CMD_SUPPORTED(x) ((x)[4] & 0x02) 1088 #define HCI_SNIFF_MODE_CMD_SUPPORTED(x) ((x)[4] & 0x04) 1089 #define HCI_EXIT_SNIFF_MODE_SUPPORTED(x) ((x)[4] & 0x08) 1090 #define HCI_PARK_STATE_SUPPORTED(x) ((x)[4] & 0x10) 1091 #define HCI_EXIT_PARK_STATE_SUPPORTED(x) ((x)[4] & 0x20) 1092 #define HCI_QOS_SETUP_SUPPORTED(x) ((x)[4] & 0x40) 1093 #define HCI_ROLE_DISCOVERY_SUPPORTED(x) ((x)[4] & 0x80) 1094 1095 #define HCI_SWITCH_ROLE_SUPPORTED(x) ((x)[5] & 0x01) 1096 #define HCI_READ_LINK_POLICY_SET_SUPPORTED(x) ((x)[5] & 0x02) 1097 #define HCI_WRITE_LINK_POLICY_SET_SUPPORTED(x) ((x)[5] & 0x04) 1098 #define HCI_READ_DEF_LINK_POLICY_SET_SUPPORTED(x) ((x)[5] & 0x08) 1099 #define HCI_WRITE_DEF_LINK_POLICY_SET_SUPPORTED(x) ((x)[5] & 0x10) 1100 #define HCI_FLOW_SPECIFICATION_SUPPORTED(x) ((x)[5] & 0x20) 1101 #define HCI_SET_EVENT_MASK_SUPPORTED(x) ((x)[5] & 0x40) 1102 #define HCI_RESET_SUPPORTED(x) ((x)[5] & 0x80) 1103 1104 #define HCI_SET_EVENT_FILTER_SUPPORTED(x) ((x)[6] & 0x01) 1105 #define HCI_FLUSH_SUPPORTED(x) ((x)[6] & 0x02) 1106 #define HCI_READ_PIN_TYPE_SUPPORTED(x) ((x)[6] & 0x04) 1107 #define HCI_WRITE_PIN_TYPE_SUPPORTED(x) ((x)[6] & 0x08) 1108 #define HCI_READ_STORED_LINK_KEY_SUPPORTED(x) ((x)[6] & 0x20) 1109 #define HCI_WRITE_STORED_LINK_KEY_SUPPORTED(x) ((x)[6] & 0x40) 1110 #define HCI_DELETE_STORED_LINK_KEY_SUPPORTED(x) ((x)[6] & 0x80) 1111 1112 #define HCI_WRITE_LOCAL_NAME_SUPPORTED(x) ((x)[7] & 0x01) 1113 #define HCI_READ_LOCAL_NAME_SUPPORTED(x) ((x)[7] & 0x02) 1114 #define HCI_READ_CONN_ACCEPT_TOUT_SUPPORTED(x) ((x)[7] & 0x04) 1115 #define HCI_WRITE_CONN_ACCEPT_TOUT_SUPPORTED(x) ((x)[7] & 0x08) 1116 #define HCI_READ_PAGE_TOUT_SUPPORTED(x) ((x)[7] & 0x10) 1117 #define HCI_WRITE_PAGE_TOUT_SUPPORTED(x) ((x)[7] & 0x20) 1118 #define HCI_READ_SCAN_ENABLE_SUPPORTED(x) ((x)[7] & 0x40) 1119 #define HCI_WRITE_SCAN_ENABLE_SUPPORTED(x) ((x)[7] & 0x80) 1120 1121 #define HCI_READ_PAGE_SCAN_ACTIVITY_SUPPORTED(x) ((x)[8] & 0x01) 1122 #define HCI_WRITE_PAGE_SCAN_ACTIVITY_SUPPORTED(x) ((x)[8] & 0x02) 1123 #define HCI_READ_INQURIY_SCAN_ACTIVITY_SUPPORTED(x) ((x)[8] & 0x04) 1124 #define HCI_WRITE_INQURIY_SCAN_ACTIVITY_SUPPORTED(x) ((x)[8] & 0x08) 1125 #define HCI_READ_AUTH_ENABLE_SUPPORTED(x) ((x)[8] & 0x10) 1126 #define HCI_WRITE_AUTH_ENABLE_SUPPORTED(x) ((x)[8] & 0x20) 1127 #define HCI_READ_ENCRYPT_ENABLE_SUPPORTED(x) ((x)[8] & 0x40) 1128 #define HCI_WRITE_ENCRYPT_ENABLE_SUPPORTED(x) ((x)[8] & 0x80) 1129 1130 #define HCI_READ_CLASS_DEVICE_SUPPORTED(x) ((x)[9] & 0x01) 1131 #define HCI_WRITE_CLASS_DEVICE_SUPPORTED(x) ((x)[9] & 0x02) 1132 #define HCI_READ_VOICE_SETTING_SUPPORTED(x) ((x)[9] & 0x04) 1133 #define HCI_WRITE_VOICE_SETTING_SUPPORTED(x) ((x)[9] & 0x08) 1134 #define HCI_READ_AUTOMATIC_FLUSH_TIMEOUT_SUPPORTED(x) ((x)[9] & 0x10) 1135 #define HCI_WRITE_AUTOMATIC_FLUSH_TIMEOUT_SUPPORTED(x) ((x)[9] & 0x20) 1136 #define HCI_READ_NUM_BROAD_RETRANS_SUPPORTED(x) ((x)[9] & 0x40) 1137 #define HCI_WRITE_NUM_BROAD_RETRANS_SUPPORTED(x) ((x)[9] & 0x80) 1138 1139 #define HCI_READ_HOLD_MODE_ACTIVITY_SUPPORTED(x) ((x)[10] & 0x01) 1140 #define HCI_WRITE_HOLD_MODE_ACTIVITY_SUPPORTED(x) ((x)[10] & 0x02) 1141 #define HCI_READ_TRANS_PWR_LEVEL_SUPPORTED(x) ((x)[10] & 0x04) 1142 #define HCI_READ_SYNCH_FLOW_CTRL_ENABLE_SUPPORTED(x) ((x)[10] & 0x08) 1143 #define HCI_WRITE_SYNCH_FLOW_CTRL_ENABLE_SUPPORTED(x) ((x)[10] & 0x10) 1144 #define HCI_SET_HOST_CTRLR_TO_HOST_FC_SUPPORTED(x) ((x)[10] & 0x20) 1145 #define HCI_HOST_BUFFER_SIZE_SUPPORTED(x) ((x)[10] & 0x40) 1146 #define HCI_HOST_NUM_COMPLETED_PKTS_SUPPORTED(x) ((x)[10] & 0x80) 1147 1148 #define HCI_READ_LINK_SUP_TOUT_SUPPORTED(x) ((x)[11] & 0x01) 1149 #define HCI_WRITE_LINK_SUP_TOUT_SUPPORTED(x) ((x)[11] & 0x02) 1150 #define HCI_READ_NUM_SUPP_IAC_SUPPORTED(x) ((x)[11] & 0x04) 1151 #define HCI_READ_CURRENT_IAC_LAP_SUPPORTED(x) ((x)[11] & 0x08) 1152 #define HCI_WRITE_CURRENT_IAC_LAP_SUPPORTED(x) ((x)[11] & 0x10) 1153 #define HCI_READ_PAGE_SCAN_PER_MODE_SUPPORTED(x) ((x)[11] & 0x20) 1154 #define HCI_WRITE_PAGE_SCAN_PER_MODE_SUPPORTED(x) ((x)[11] & 0x40) 1155 #define HCI_READ_PAGE_SCAN_MODE_SUPPORTED(x) ((x)[11] & 0x80) 1156 1157 #define HCI_WRITE_PAGE_SCAN_MODE_SUPPORTED(x) ((x)[12] & 0x01) 1158 #define HCI_SET_AFH_CHNL_CLASS_SUPPORTED(x) ((x)[12] & 0x02) 1159 #define HCI_READ_INQUIRY_SCAN_TYPE_SUPPORTED(x) ((x)[12] & 0x10) 1160 #define HCI_WRITE_INQUIRY_SCAN_TYPE_SUPPORTED(x) ((x)[12] & 0x20) 1161 #define HCI_READ_INQUIRY_MODE_SUPPORTED(x) ((x)[12] & 0x40) 1162 #define HCI_WRITE_INQUIRY_MODE_SUPPORTED(x) ((x)[12] & 0x80) 1163 1164 #define HCI_READ_PAGE_SCAN_TYPE_SUPPORTED(x) ((x)[13] & 0x01) 1165 #define HCI_WRITE_PAGE_SCAN_TYPE_SUPPORTED(x) ((x)[13] & 0x02) 1166 #define HCI_READ_AFH_CHNL_ASSESS_MODE_SUPPORTED(x) ((x)[13] & 0x04) 1167 #define HCI_WRITE_AFH_CHNL_ASSESS_MODE_SUPPORTED(x) ((x)[13] & 0x08) 1168 1169 #define HCI_READ_LOCAL_VER_INFO_SUPPORTED(x) ((x)[14] & 0x08) 1170 #define HCI_READ_LOCAL_SUP_CMDS_SUPPORTED(x) ((x)[14] & 0x10) 1171 #define HCI_READ_LOCAL_SUPP_FEATURES_SUPPORTED(x) ((x)[14] & 0x20) 1172 #define HCI_READ_LOCAL_EXT_FEATURES_SUPPORTED(x) ((x)[14] & 0x40) 1173 #define HCI_READ_BUFFER_SIZE_SUPPORTED(x) ((x)[14] & 0x80) 1174 1175 #define HCI_READ_COUNTRY_CODE_SUPPORTED(x) ((x)[15] & 0x01) 1176 #define HCI_READ_BD_ADDR_SUPPORTED(x) ((x)[15] & 0x02) 1177 #define HCI_READ_FAIL_CONTACT_CNTR_SUPPORTED(x) ((x)[15] & 0x04) 1178 #define HCI_RESET_FAIL_CONTACT_CNTR_SUPPORTED(x) ((x)[15] & 0x08) 1179 #define HCI_GET_LINK_QUALITY_SUPPORTED(x) ((x)[15] & 0x10) 1180 #define HCI_READ_RSSI_SUPPORTED(x) ((x)[15] & 0x20) 1181 #define HCI_READ_AFH_CH_MAP_SUPPORTED(x) ((x)[15] & 0x40) 1182 #define HCI_READ_BD_CLOCK_SUPPORTED(x) ((x)[15] & 0x80) 1183 1184 #define HCI_READ_LOOPBACK_MODE_SUPPORTED(x) ((x)[16] & 0x01) 1185 #define HCI_WRITE_LOOPBACK_MODE_SUPPORTED(x) ((x)[16] & 0x02) 1186 #define HCI_ENABLE_DEV_UNDER_TEST_SUPPORTED(x) ((x)[16] & 0x04) 1187 #define HCI_SETUP_SYNCH_CONN_SUPPORTED(x) ((x)[16] & 0x08) 1188 #define HCI_ACCEPT_SYNCH_CONN_SUPPORTED(x) ((x)[16] & 0x10) 1189 #define HCI_REJECT_SYNCH_CONN_SUPPORTED(x) ((x)[16] & 0x20) 1190 1191 #define HCI_READ_EXT_INQUIRY_RESP_SUPPORTED(x) ((x)[17] & 0x01) 1192 #define HCI_WRITE_EXT_INQUIRY_RESP_SUPPORTED(x) ((x)[17] & 0x02) 1193 #define HCI_REFRESH_ENCRYPTION_KEY_SUPPORTED(x) ((x)[17] & 0x04) 1194 #define HCI_SNIFF_SUB_RATE_CMD_SUPPORTED(x) ((x)[17] & 0x10) 1195 #define HCI_READ_SIMPLE_PAIRING_MODE_SUPPORTED(x) ((x)[17] & 0x20) 1196 #define HCI_WRITE_SIMPLE_PAIRING_MODE_SUPPORTED(x) ((x)[17] & 0x40) 1197 #define HCI_READ_LOCAL_OOB_DATA_SUPPORTED(x) ((x)[17] & 0x80) 1198 1199 #define HCI_READ_INQUIRY_RESPONSE_TX_POWER_SUPPORTED(x) ((x)[18] & 0x01) 1200 #define HCI_WRITE_INQUIRY_RESPONSE_TX_POWER_SUPPORTED(x) ((x)[18] & 0x02) 1201 #define HCI_READ_DEFAULT_ERRONEOUS_DATA_REPORTING_SUPPORTED(x) ((x)[18] & 0x04) 1202 #define HCI_WRITE_DEFAULT_ERRONEOUS_DATA_REPORTING_SUPPORTED(x) ((x)[18] & 0x08) 1203 #define HCI_IO_CAPABILITY_REQUEST_REPLY_SUPPORTED(x) ((x)[18] & 0x80) 1204 1205 #define HCI_USER_CONFIRMATION_REQUEST_REPLY_SUPPORTED(x) ((x)[19] & 0x01) 1206 #define HCI_USER_CONFIRMATION_REQUEST_NEG_REPLY_SUPPORTED(x) ((x)[19] & 0x02) 1207 #define HCI_USER_PASSKEY_REQUEST_REPLY_SUPPORTED(x) ((x)[19] & 0x04) 1208 #define HCI_USER_PASSKEY_REQUEST_NEG_REPLY_SUPPORTED(x) ((x)[19] & 0x08) 1209 #define HCI_REMOTE_OOB_DATA_REQUEST_REPLY_SUPPORTED(x) ((x)[19] & 0x10) 1210 #define HCI_WRITE_SIMPLE_PAIRING_DBG_MODE_SUPPORTED(x) ((x)[19] & 0x20) 1211 #define HCI_ENHANCED_FLUSH_SUPPORTED(x) ((x)[19] & 0x40) 1212 #define HCI_REMOTE_OOB_DATA_REQUEST_NEG_REPLY_SUPPORTED(x) ((x)[19] & 0x80) 1213 1214 #define HCI_SEND_NOTIF_SUPPORTED(x) ((x)[20] & 0x04) 1215 #define HCI_IO_CAP_REQ_NEG_REPLY_SUPPORTED(x) ((x)[20] & 0x08) 1216 #define HCI_READ_ENCR_KEY_SIZE_SUPPORTED(x) ((x)[20] & 0x10) 1217 1218 #define HCI_CREATE_PHYSICAL_LINK_SUPPORTED(x) ((x)[21] & 0x01) 1219 #define HCI_ACCEPT_PHYSICAL_LINK_SUPPORTED(x) ((x)[21] & 0x02) 1220 #define HCI_DISCONNECT_PHYSICAL_LINK_SUPPORTED(x) ((x)[21] & 0x04) 1221 #define HCI_CREATE_LOGICAL_LINK_SUPPORTED(x) ((x)[21] & 0x08) 1222 #define HCI_ACCEPT_LOGICAL_LINK_SUPPORTED(x) ((x)[21] & 0x10) 1223 #define HCI_DISCONNECT_LOGICAL_LINK_SUPPORTED(x) ((x)[21] & 0x20) 1224 #define HCI_LOGICAL_LINK_CANCEL_SUPPORTED(x) ((x)[21] & 0x40) 1225 #define HCI_FLOW_SPEC_MODIFY_SUPPORTED(x) ((x)[21] & 0x80) 1226 1227 #define HCI_READ_LOGICAL_LINK_ACCEPT_TIMEOUT_SUPPORTED(x) ((x)[22] & 0x01) 1228 #define HCI_WRITE_LOGICAL_LINK_ACCEPT_TIMEOUT_SUPPORTED(x) ((x)[22] & 0x02) 1229 #define HCI_SET_EVENT_MASK_PAGE_2_SUPPORTED(x) ((x)[22] & 0x04) 1230 #define HCI_READ_LOCATION_DATA_SUPPORTED(x) ((x)[22] & 0x08) 1231 #define HCI_WRITE_LOCATION_DATA_SUPPORTED(x) ((x)[22] & 0x10) 1232 #define HCI_READ_LOCAL_AMP_INFO_SUPPORTED(x) ((x)[22] & 0x20) 1233 #define HCI_READ_LOCAL_AMP_ASSOC_SUPPORTED(x) ((x)[22] & 0x40) 1234 #define HCI_WRITE_REMOTE_AMP_ASSOC_SUPPORTED(x) ((x)[22] & 0x80) 1235 1236 #define HCI_READ_FLOW_CONTROL_MODE_SUPPORTED(x) ((x)[23] & 0x01) 1237 #define HCI_WRITE_FLOW_CONTROL_MODE_SUPPORTED(x) ((x)[23] & 0x02) 1238 #define HCI_READ_DATA_BLOCK_SIZE_SUPPORTED(x) ((x)[23] & 0x04) 1239 #define HCI_ENABLE_AMP_RCVR_REPORTS_SUPPORTED(x) ((x)[23] & 0x20) 1240 #define HCI_AMP_TEST_END_SUPPORTED(x) ((x)[23] & 0x40) 1241 #define HCI_AMP_TEST_SUPPORTED(x) ((x)[23] & 0x80) 1242 1243 #define HCI_READ_TRANSMIT_POWER_LEVEL_SUPPORTED(x) ((x)[24] & 0x01) 1244 #define HCI_READ_BE_FLUSH_TOUT_SUPPORTED(x) ((x)[24] & 0x04) 1245 #define HCI_WRITE_BE_FLUSH_TOUT_SUPPORTED(x) ((x)[24] & 0x08) 1246 #define HCI_SHORT_RANGE_MODE_SUPPORTED(x) ((x)[24] & 0x10) 1247 1248 #define HCI_ENH_SETUP_SYNCH_CONN_SUPPORTED(x) ((x)[29] & 0x08) 1249 #define HCI_ENH_ACCEPT_SYNCH_CONN_SUPPORTED(x) ((x)[29] & 0x10) 1250 #define HCI_READ_LOCAL_CODECS_SUPPORTED(x) ((x)[29] & 0x20) 1251 #define HCI_SET_MWS_CHANNEL_PARAMETERS_SUPPORTED(x) ((x)[29] & 0x40) 1252 #define HCI_SET_EXTERNAL_FRAME_CONFIGURATION_SUPPORTED(x) ((x)[29] & 0x80) 1253 1254 #define HCI_SET_MWS_SIGNALING_SUPPORTED(x) ((x)[30] & 0x01) 1255 #define HCI_SET_MWS_TRANSPORT_LAYER_SUPPORTED(x) ((x)[30] & 0x02) 1256 #define HCI_SET_MWS_SCAN_FREQUENCY_TABLE_SUPPORTED(x) ((x)[30] & 0x04) 1257 #define HCI_GET_MWS_TRANS_LAYER_CFG_SUPPORTED(x) ((x)[30] & 0x08) 1258 #define HCI_SET_MWS_PATTERN_CONFIGURATION_SUPPORTED(x) ((x)[30] & 0x10) 1259 #define HCI_SET_TRIG_CLK_CAP_SUPPORTED(x) ((x)[30] & 0x20) 1260 #define HCI_TRUNCATED_PAGE_SUPPORTED(x) ((x)[30] & 0x40) 1261 #define HCI_TRUNCATED_PAGE_CANCEL_SUPPORTED(x) ((x)[30] & 0x80) 1262 1263 #define HCI_SET_CONLESS_PERIPHERAL_BRCST_SUPPORTED(x) ((x)[31] & 0x01) 1264 #define HCI_SET_CONLESS_PERIPHERAL_BRCST_RECEIVE_SUPPORTED(x) ((x)[31] & 0x02) 1265 #define HCI_START_SYNC_TRAIN_SUPPORTED(x) ((x)[31] & 0x04) 1266 #define HCI_RECEIVE_SYNC_TRAIN_SUPPORTED(x) ((x)[31] & 0x08) 1267 #define HCI_SET_RESERVED_LT_ADDR_SUPPORTED(x) ((x)[31] & 0x10) 1268 #define HCI_DELETE_RESERVED_LT_ADDR_SUPPORTED(x) ((x)[31] & 0x20) 1269 #define HCI_SET_CONLESS_PERIPHERAL_BRCST_DATA_SUPPORTED(x) ((x)[31] & 0x40) 1270 #define HCI_READ_SYNC_TRAIN_PARAM_SUPPORTED(x) ((x)[31] & 0x80) 1271 1272 #define HCI_WRITE_SYNC_TRAIN_PARAM_SUPPORTED(x) ((x)[32] & 0x01) 1273 #define HCI_REMOTE_OOB_EXTENDED_DATA_REQUEST_REPLY_SUPPORTED(x) ((x)[32] & 0x02) 1274 #define HCI_READ_SECURE_CONNS_SUPPORT_SUPPORTED(x) ((x)[32] & 0x04) 1275 #define HCI_WRITE_SECURE_CONNS_SUPPORT_SUPPORTED(x) ((x)[32] & 0x08) 1276 #define HCI_READ_AUTHENT_PAYLOAD_TOUT_SUPPORTED(x) ((x)[32] & 0x10) 1277 #define HCI_WRITE_AUTHENT_PAYLOAD_TOUT_SUPPORTED(x) ((x)[32] & 0x20) 1278 #define HCI_READ_LOCAL_OOB_EXTENDED_DATA_SUPPORTED(x) ((x)[32] & 0x40) 1279 #define HCI_WRITE_SECURE_CONNECTIONS_TEST_MODE_SUPPORTED(x) ((x)[32] & 0x80) 1280 1281 #define HCI_LE_RC_CONN_PARAM_UPD_RPY_SUPPORTED(x) ((x)[33] & 0x10) 1282 #define HCI_LE_RC_CONN_PARAM_UPD_NEG_RPY_SUPPORTED(x) ((x)[33] & 0x20) 1283 1284 #define HCI_LE_READ_PHY_SUPPORTED(x) ((x)[35] & 0x10) 1285 #define HCI_LE_SET_DEFAULT_PHY_SUPPORTED(x) ((x)[35] & 0x20) 1286 #define HCI_LE_SET_PHY_SUPPORTED(x) ((x)[35] & 0x40) 1287 #define HCI_LE_ENH_RX_TEST_SUPPORTED(x) ((x)[35] & 0x80) 1288 1289 #define HCI_LE_ENH_TX_TEST_SUPPORTED(x) ((x)[36] & 0x01) 1290 1291 #define HCI_LE_SET_PRIVACY_MODE_SUPPORTED(x) ((x)[39] & 0x04) 1292 1293 #define HCI_LE_SET_HOST_FEATURE_SUPPORTED(x) ((x)[44] & 0x02) 1294 1295 #define HCI_CONFIGURE_DATA_PATH_SUPPORTED(x) ((x)[45] & 0x20) 1296 1297 #endif 1298