1 /****************************************************************************** 2 * 3 * Copyright (C) 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 #define HCI_PROTO_VERSION 0x01 /* Version for BT spec 1.1 */ 23 #define HCI_PROTO_VERSION_1_2 0x02 /* Version for BT spec 1.2 */ 24 #define HCI_PROTO_VERSION_2_0 0x03 /* Version for BT spec 2.0 */ 25 #define HCI_PROTO_VERSION_2_1 0x04 /* Version for BT spec 2.1 [Lisbon] */ 26 #define HCI_PROTO_VERSION_3_0 0x05 /* Version for BT spec 3.0 */ 27 #define HCI_PROTO_VERSION_4_0 0x06 /* Version for BT spec 4.0 [LE] */ 28 #define HCI_PROTO_VERSION_4_1 0x07 /* Version for BT spec 4.1 */ 29 #define HCI_PROTO_VERSION_4_2 0x08 /* Version for BT spec 4.2 */ 30 #define HCI_PROTO_VERSION_5_0 0x09 /* Version for BT spec 5.0 */ 31 32 /* 33 * Definitions for HCI groups 34 */ 35 #define HCI_GRP_LINK_CONTROL_CMDS (0x01 << 10) /* 0x0400 */ 36 #define HCI_GRP_LINK_POLICY_CMDS (0x02 << 10) /* 0x0800 */ 37 #define HCI_GRP_HOST_CONT_BASEBAND_CMDS (0x03 << 10) /* 0x0C00 */ 38 #define HCI_GRP_INFORMATIONAL_PARAMS (0x04 << 10) /* 0x1000 */ 39 #define HCI_GRP_STATUS_PARAMS (0x05 << 10) /* 0x1400 */ 40 #define HCI_GRP_TESTING_CMDS (0x06 << 10) /* 0x1800 */ 41 #define HCI_GRP_BLE_CMDS (0x08 << 10) /* 0x2000 (LE Commands) */ 42 43 #define HCI_GRP_VENDOR_SPECIFIC (0x3F << 10) /* 0xFC00 */ 44 45 /* Group occupies high 6 bits of the HCI command rest is opcode itself */ 46 #define HCI_OGF(p) (uint8_t)((0xFC00 & (p)) >> 10) 47 #define HCI_OCF(p) (0x3FF & (p)) 48 49 /* 50 * Definitions for Link Control Commands 51 */ 52 /* Following opcode is used only in command complete event for flow control */ 53 #define HCI_COMMAND_NONE 0x0000 54 55 /* Commands of HCI_GRP_LINK_CONTROL_CMDS group */ 56 #define HCI_INQUIRY (0x0001 | HCI_GRP_LINK_CONTROL_CMDS) 57 #define HCI_INQUIRY_CANCEL (0x0002 | HCI_GRP_LINK_CONTROL_CMDS) 58 #define HCI_PERIODIC_INQUIRY_MODE (0x0003 | HCI_GRP_LINK_CONTROL_CMDS) 59 #define HCI_EXIT_PERIODIC_INQUIRY_MODE (0x0004 | HCI_GRP_LINK_CONTROL_CMDS) 60 #define HCI_CREATE_CONNECTION (0x0005 | HCI_GRP_LINK_CONTROL_CMDS) 61 #define HCI_DISCONNECT (0x0006 | HCI_GRP_LINK_CONTROL_CMDS) 62 #define HCI_ADD_SCO_CONNECTION (0x0007 | HCI_GRP_LINK_CONTROL_CMDS) 63 #define HCI_CREATE_CONNECTION_CANCEL (0x0008 | HCI_GRP_LINK_CONTROL_CMDS) 64 #define HCI_ACCEPT_CONNECTION_REQUEST (0x0009 | HCI_GRP_LINK_CONTROL_CMDS) 65 #define HCI_REJECT_CONNECTION_REQUEST (0x000A | HCI_GRP_LINK_CONTROL_CMDS) 66 #define HCI_LINK_KEY_REQUEST_REPLY (0x000B | HCI_GRP_LINK_CONTROL_CMDS) 67 #define HCI_LINK_KEY_REQUEST_NEG_REPLY (0x000C | HCI_GRP_LINK_CONTROL_CMDS) 68 #define HCI_PIN_CODE_REQUEST_REPLY (0x000D | HCI_GRP_LINK_CONTROL_CMDS) 69 #define HCI_PIN_CODE_REQUEST_NEG_REPLY (0x000E | HCI_GRP_LINK_CONTROL_CMDS) 70 #define HCI_CHANGE_CONN_PACKET_TYPE (0x000F | HCI_GRP_LINK_CONTROL_CMDS) 71 #define HCI_AUTHENTICATION_REQUESTED (0x0011 | HCI_GRP_LINK_CONTROL_CMDS) 72 #define HCI_SET_CONN_ENCRYPTION (0x0013 | HCI_GRP_LINK_CONTROL_CMDS) 73 #define HCI_CHANGE_CONN_LINK_KEY (0x0015 | HCI_GRP_LINK_CONTROL_CMDS) 74 #define HCI_MASTER_LINK_KEY (0x0017 | HCI_GRP_LINK_CONTROL_CMDS) 75 #define HCI_RMT_NAME_REQUEST (0x0019 | HCI_GRP_LINK_CONTROL_CMDS) 76 #define HCI_RMT_NAME_REQUEST_CANCEL (0x001A | HCI_GRP_LINK_CONTROL_CMDS) 77 #define HCI_READ_RMT_FEATURES (0x001B | HCI_GRP_LINK_CONTROL_CMDS) 78 #define HCI_READ_RMT_EXT_FEATURES (0x001C | HCI_GRP_LINK_CONTROL_CMDS) 79 #define HCI_READ_RMT_VERSION_INFO (0x001D | HCI_GRP_LINK_CONTROL_CMDS) 80 #define HCI_READ_RMT_CLOCK_OFFSET (0x001F | HCI_GRP_LINK_CONTROL_CMDS) 81 #define HCI_READ_LMP_HANDLE (0x0020 | HCI_GRP_LINK_CONTROL_CMDS) 82 #define HCI_SETUP_ESCO_CONNECTION (0x0028 | HCI_GRP_LINK_CONTROL_CMDS) 83 #define HCI_ACCEPT_ESCO_CONNECTION (0x0029 | HCI_GRP_LINK_CONTROL_CMDS) 84 #define HCI_REJECT_ESCO_CONNECTION (0x002A | HCI_GRP_LINK_CONTROL_CMDS) 85 #define HCI_IO_CAPABILITY_REQUEST_REPLY (0x002B | HCI_GRP_LINK_CONTROL_CMDS) 86 #define HCI_USER_CONF_REQUEST_REPLY (0x002C | HCI_GRP_LINK_CONTROL_CMDS) 87 #define HCI_USER_CONF_VALUE_NEG_REPLY (0x002D | HCI_GRP_LINK_CONTROL_CMDS) 88 #define HCI_USER_PASSKEY_REQ_REPLY (0x002E | HCI_GRP_LINK_CONTROL_CMDS) 89 #define HCI_USER_PASSKEY_REQ_NEG_REPLY (0x002F | HCI_GRP_LINK_CONTROL_CMDS) 90 #define HCI_REM_OOB_DATA_REQ_REPLY (0x0030 | HCI_GRP_LINK_CONTROL_CMDS) 91 #define HCI_REM_OOB_DATA_REQ_NEG_REPLY (0x0033 | HCI_GRP_LINK_CONTROL_CMDS) 92 #define HCI_IO_CAP_REQ_NEG_REPLY (0x0034 | HCI_GRP_LINK_CONTROL_CMDS) 93 94 /* AMP HCI */ 95 #define HCI_CREATE_PHYSICAL_LINK (0x0035 | HCI_GRP_LINK_CONTROL_CMDS) 96 #define HCI_ACCEPT_PHYSICAL_LINK (0x0036 | HCI_GRP_LINK_CONTROL_CMDS) 97 #define HCI_DISCONNECT_PHYSICAL_LINK (0x0037 | HCI_GRP_LINK_CONTROL_CMDS) 98 #define HCI_CREATE_LOGICAL_LINK (0x0038 | HCI_GRP_LINK_CONTROL_CMDS) 99 #define HCI_ACCEPT_LOGICAL_LINK (0x0039 | HCI_GRP_LINK_CONTROL_CMDS) 100 #define HCI_DISCONNECT_LOGICAL_LINK (0x003A | HCI_GRP_LINK_CONTROL_CMDS) 101 #define HCI_LOGICAL_LINK_CANCEL (0x003B | HCI_GRP_LINK_CONTROL_CMDS) 102 #define HCI_FLOW_SPEC_MODIFY (0x003C | HCI_GRP_LINK_CONTROL_CMDS) 103 104 #define HCI_ENH_SETUP_ESCO_CONNECTION (0x003D | HCI_GRP_LINK_CONTROL_CMDS) 105 #define HCI_ENH_ACCEPT_ESCO_CONNECTION (0x003E | HCI_GRP_LINK_CONTROL_CMDS) 106 107 /* ConnectionLess Broadcast */ 108 #define HCI_TRUNCATED_PAGE (0x003F | HCI_GRP_LINK_CONTROL_CMDS) 109 #define HCI_TRUNCATED_PAGE_CANCEL (0x0040 | HCI_GRP_LINK_CONTROL_CMDS) 110 #define HCI_SET_CLB (0x0041 | HCI_GRP_LINK_CONTROL_CMDS) 111 #define HCI_RECEIVE_CLB (0x0042 | HCI_GRP_LINK_CONTROL_CMDS) 112 #define HCI_START_SYNC_TRAIN (0x0043 | HCI_GRP_LINK_CONTROL_CMDS) 113 #define HCI_RECEIVE_SYNC_TRAIN (0x0044 | HCI_GRP_LINK_CONTROL_CMDS) 114 115 #define HCI_LINK_CTRL_CMDS_FIRST HCI_INQUIRY 116 #define HCI_LINK_CTRL_CMDS_LAST HCI_RECEIVE_SYNC_TRAIN 117 118 /* Commands of HCI_GRP_LINK_POLICY_CMDS */ 119 #define HCI_HOLD_MODE (0x0001 | HCI_GRP_LINK_POLICY_CMDS) 120 #define HCI_SNIFF_MODE (0x0003 | HCI_GRP_LINK_POLICY_CMDS) 121 #define HCI_EXIT_SNIFF_MODE (0x0004 | HCI_GRP_LINK_POLICY_CMDS) 122 #define HCI_PARK_MODE (0x0005 | HCI_GRP_LINK_POLICY_CMDS) 123 #define HCI_EXIT_PARK_MODE (0x0006 | HCI_GRP_LINK_POLICY_CMDS) 124 #define HCI_QOS_SETUP (0x0007 | HCI_GRP_LINK_POLICY_CMDS) 125 #define HCI_ROLE_DISCOVERY (0x0009 | HCI_GRP_LINK_POLICY_CMDS) 126 #define HCI_SWITCH_ROLE (0x000B | HCI_GRP_LINK_POLICY_CMDS) 127 #define HCI_READ_POLICY_SETTINGS (0x000C | HCI_GRP_LINK_POLICY_CMDS) 128 #define HCI_WRITE_POLICY_SETTINGS (0x000D | HCI_GRP_LINK_POLICY_CMDS) 129 #define HCI_READ_DEF_POLICY_SETTINGS (0x000E | HCI_GRP_LINK_POLICY_CMDS) 130 #define HCI_WRITE_DEF_POLICY_SETTINGS (0x000F | HCI_GRP_LINK_POLICY_CMDS) 131 #define HCI_FLOW_SPECIFICATION (0x0010 | HCI_GRP_LINK_POLICY_CMDS) 132 #define HCI_SNIFF_SUB_RATE (0x0011 | HCI_GRP_LINK_POLICY_CMDS) 133 134 #define HCI_LINK_POLICY_CMDS_FIRST HCI_HOLD_MODE 135 #define HCI_LINK_POLICY_CMDS_LAST HCI_SNIFF_SUB_RATE 136 137 /* Commands of HCI_GRP_HOST_CONT_BASEBAND_CMDS */ 138 #define HCI_SET_EVENT_MASK (0x0001 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 139 #define HCI_RESET (0x0003 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 140 #define HCI_SET_EVENT_FILTER (0x0005 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 141 #define HCI_FLUSH (0x0008 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 142 #define HCI_READ_PIN_TYPE (0x0009 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 143 #define HCI_WRITE_PIN_TYPE (0x000A | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 144 #define HCI_CREATE_NEW_UNIT_KEY (0x000B | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 145 #define HCI_GET_MWS_TRANS_LAYER_CFG (0x000C | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 146 #define HCI_READ_STORED_LINK_KEY (0x000D | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 147 #define HCI_WRITE_STORED_LINK_KEY (0x0011 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 148 #define HCI_DELETE_STORED_LINK_KEY (0x0012 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 149 #define HCI_CHANGE_LOCAL_NAME (0x0013 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 150 #define HCI_READ_LOCAL_NAME (0x0014 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 151 #define HCI_READ_CONN_ACCEPT_TOUT (0x0015 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 152 #define HCI_WRITE_CONN_ACCEPT_TOUT (0x0016 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 153 #define HCI_READ_PAGE_TOUT (0x0017 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 154 #define HCI_WRITE_PAGE_TOUT (0x0018 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 155 #define HCI_READ_SCAN_ENABLE (0x0019 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 156 #define HCI_WRITE_SCAN_ENABLE (0x001A | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 157 #define HCI_READ_PAGESCAN_CFG (0x001B | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 158 #define HCI_WRITE_PAGESCAN_CFG (0x001C | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 159 #define HCI_READ_INQUIRYSCAN_CFG (0x001D | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 160 #define HCI_WRITE_INQUIRYSCAN_CFG (0x001E | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 161 #define HCI_READ_AUTHENTICATION_ENABLE \ 162 (0x001F | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 163 #define HCI_WRITE_AUTHENTICATION_ENABLE \ 164 (0x0020 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 165 #define HCI_READ_ENCRYPTION_MODE (0x0021 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 166 #define HCI_WRITE_ENCRYPTION_MODE (0x0022 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 167 #define HCI_READ_CLASS_OF_DEVICE (0x0023 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 168 #define HCI_WRITE_CLASS_OF_DEVICE (0x0024 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 169 #define HCI_READ_VOICE_SETTINGS (0x0025 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 170 #define HCI_WRITE_VOICE_SETTINGS (0x0026 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 171 #define HCI_READ_AUTOMATIC_FLUSH_TIMEOUT \ 172 (0x0027 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 173 #define HCI_WRITE_AUTOMATIC_FLUSH_TIMEOUT \ 174 (0x0028 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 175 #define HCI_READ_NUM_BCAST_REXMITS (0x0029 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 176 #define HCI_WRITE_NUM_BCAST_REXMITS (0x002A | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 177 #define HCI_READ_HOLD_MODE_ACTIVITY (0x002B | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 178 #define HCI_WRITE_HOLD_MODE_ACTIVITY (0x002C | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 179 #define HCI_READ_TRANSMIT_POWER_LEVEL (0x002D | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 180 #define HCI_READ_SCO_FLOW_CTRL_ENABLE (0x002E | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 181 #define HCI_WRITE_SCO_FLOW_CTRL_ENABLE \ 182 (0x002F | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 183 #define HCI_SET_HC_TO_HOST_FLOW_CTRL (0x0031 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 184 #define HCI_HOST_BUFFER_SIZE (0x0033 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 185 #define HCI_HOST_NUM_PACKETS_DONE (0x0035 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 186 #define HCI_READ_LINK_SUPER_TOUT (0x0036 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 187 #define HCI_WRITE_LINK_SUPER_TOUT (0x0037 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 188 #define HCI_READ_NUM_SUPPORTED_IAC (0x0038 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 189 #define HCI_READ_CURRENT_IAC_LAP (0x0039 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 190 #define HCI_WRITE_CURRENT_IAC_LAP (0x003A | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 191 #define HCI_READ_PAGESCAN_PERIOD_MODE (0x003B | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 192 #define HCI_WRITE_PAGESCAN_PERIOD_MODE \ 193 (0x003C | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 194 #define HCI_READ_PAGESCAN_MODE (0x003D | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 195 #define HCI_WRITE_PAGESCAN_MODE (0x003E | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 196 #define HCI_SET_AFH_CHANNELS (0x003F | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 197 198 #define HCI_READ_INQSCAN_TYPE (0x0042 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 199 #define HCI_WRITE_INQSCAN_TYPE (0x0043 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 200 #define HCI_READ_INQUIRY_MODE (0x0044 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 201 #define HCI_WRITE_INQUIRY_MODE (0x0045 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 202 #define HCI_READ_PAGESCAN_TYPE (0x0046 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 203 #define HCI_WRITE_PAGESCAN_TYPE (0x0047 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 204 #define HCI_READ_AFH_ASSESSMENT_MODE (0x0048 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 205 #define HCI_WRITE_AFH_ASSESSMENT_MODE (0x0049 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 206 #define HCI_READ_EXT_INQ_RESPONSE (0x0051 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 207 #define HCI_WRITE_EXT_INQ_RESPONSE (0x0052 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 208 #define HCI_REFRESH_ENCRYPTION_KEY (0x0053 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 209 #define HCI_READ_SIMPLE_PAIRING_MODE (0x0055 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 210 #define HCI_WRITE_SIMPLE_PAIRING_MODE (0x0056 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 211 #define HCI_READ_LOCAL_OOB_DATA (0x0057 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 212 #define HCI_READ_INQ_TX_POWER_LEVEL (0x0058 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 213 #define HCI_WRITE_INQ_TX_POWER_LEVEL (0x0059 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 214 #define HCI_READ_ERRONEOUS_DATA_RPT (0x005A | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 215 #define HCI_WRITE_ERRONEOUS_DATA_RPT (0x005B | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 216 #define HCI_ENHANCED_FLUSH (0x005F | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 217 #define HCI_SEND_KEYPRESS_NOTIF (0x0060 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 218 219 /* AMP HCI */ 220 #define HCI_READ_LOGICAL_LINK_ACCEPT_TIMEOUT \ 221 (0x0061 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 222 #define HCI_WRITE_LOGICAL_LINK_ACCEPT_TIMEOUT \ 223 (0x0062 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 224 #define HCI_SET_EVENT_MASK_PAGE_2 (0x0063 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 225 #define HCI_READ_LOCATION_DATA (0x0064 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 226 #define HCI_WRITE_LOCATION_DATA (0x0065 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 227 #define HCI_READ_FLOW_CONTROL_MODE (0x0066 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 228 #define HCI_WRITE_FLOW_CONTROL_MODE (0x0067 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 229 #define HCI_READ_BE_FLUSH_TOUT (0x0069 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 230 #define HCI_WRITE_BE_FLUSH_TOUT (0x006A | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 231 /* 802.11 only */ 232 #define HCI_SHORT_RANGE_MODE (0x006B | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 233 #define HCI_READ_LE_HOST_SUPPORT (0x006C | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 234 #define HCI_WRITE_LE_HOST_SUPPORT (0x006D | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 235 236 /* MWS coexistence */ 237 #define HCI_SET_MWS_CHANNEL_PARAMETERS \ 238 (0x006E | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 239 #define HCI_SET_EXTERNAL_FRAME_CONFIGURATION \ 240 (0x006F | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 241 #define HCI_SET_MWS_SIGNALING (0x0070 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 242 #define HCI_SET_MWS_TRANSPORT_LAYER (0x0071 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 243 #define HCI_SET_MWS_SCAN_FREQUENCY_TABLE \ 244 (0x0072 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 245 #define HCI_SET_MWS_PATTERN_CONFIGURATION \ 246 (0x0073 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 247 248 /* Connectionless Broadcast */ 249 #define HCI_SET_RESERVED_LT_ADDR (0x0074 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 250 #define HCI_DELETE_RESERVED_LT_ADDR (0x0075 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 251 #define HCI_WRITE_CLB_DATA (0x0076 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 252 #define HCI_READ_SYNC_TRAIN_PARAM (0x0077 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 253 #define HCI_WRITE_SYNC_TRAIN_PARAM (0x0078 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 254 255 #define HCI_READ_SECURE_CONNS_SUPPORT (0x0079 | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 256 #define HCI_WRITE_SECURE_CONNS_SUPPORT \ 257 (0x007A | HCI_GRP_HOST_CONT_BASEBAND_CMDS) 258 #define HCI_CONT_BASEBAND_CMDS_FIRST HCI_SET_EVENT_MASK 259 #define HCI_CONT_BASEBAND_CMDS_LAST HCI_READ_SYNC_TRAIN_PARAM 260 261 /* Commands of HCI_GRP_INFORMATIONAL_PARAMS group */ 262 #define HCI_READ_LOCAL_VERSION_INFO (0x0001 | HCI_GRP_INFORMATIONAL_PARAMS) 263 #define HCI_READ_LOCAL_SUPPORTED_CMDS (0x0002 | HCI_GRP_INFORMATIONAL_PARAMS) 264 #define HCI_READ_LOCAL_FEATURES (0x0003 | HCI_GRP_INFORMATIONAL_PARAMS) 265 #define HCI_READ_LOCAL_EXT_FEATURES (0x0004 | HCI_GRP_INFORMATIONAL_PARAMS) 266 #define HCI_READ_BUFFER_SIZE (0x0005 | HCI_GRP_INFORMATIONAL_PARAMS) 267 #define HCI_READ_COUNTRY_CODE (0x0007 | HCI_GRP_INFORMATIONAL_PARAMS) 268 #define HCI_READ_BD_ADDR (0x0009 | HCI_GRP_INFORMATIONAL_PARAMS) 269 #define HCI_READ_DATA_BLOCK_SIZE (0x000A | HCI_GRP_INFORMATIONAL_PARAMS) 270 #define HCI_READ_LOCAL_SUPPORTED_CODECS (0x000B | HCI_GRP_INFORMATIONAL_PARAMS) 271 272 #define HCI_INFORMATIONAL_CMDS_FIRST HCI_READ_LOCAL_VERSION_INFO 273 #define HCI_INFORMATIONAL_CMDS_LAST HCI_READ_LOCAL_SUPPORTED_CODECS 274 275 /* Commands of HCI_GRP_STATUS_PARAMS group */ 276 #define HCI_READ_FAILED_CONTACT_COUNTER (0x0001 | HCI_GRP_STATUS_PARAMS) 277 #define HCI_RESET_FAILED_CONTACT_COUNTER (0x0002 | HCI_GRP_STATUS_PARAMS) 278 #define HCI_GET_LINK_QUALITY (0x0003 | HCI_GRP_STATUS_PARAMS) 279 #define HCI_READ_RSSI (0x0005 | HCI_GRP_STATUS_PARAMS) 280 #define HCI_READ_AFH_CH_MAP (0x0006 | HCI_GRP_STATUS_PARAMS) 281 #define HCI_READ_CLOCK (0x0007 | HCI_GRP_STATUS_PARAMS) 282 #define HCI_READ_ENCR_KEY_SIZE (0x0008 | HCI_GRP_STATUS_PARAMS) 283 284 /* AMP HCI */ 285 #define HCI_READ_LOCAL_AMP_INFO (0x0009 | HCI_GRP_STATUS_PARAMS) 286 #define HCI_READ_LOCAL_AMP_ASSOC (0x000A | HCI_GRP_STATUS_PARAMS) 287 #define HCI_WRITE_REMOTE_AMP_ASSOC (0x000B | HCI_GRP_STATUS_PARAMS) 288 289 #define HCI_STATUS_PARAMS_CMDS_FIRST HCI_READ_FAILED_CONTACT_COUNTER 290 #define HCI_STATUS_PARAMS_CMDS_LAST HCI_WRITE_REMOTE_AMP_ASSOC 291 292 /* Commands of HCI_GRP_TESTING_CMDS group */ 293 #define HCI_READ_LOOPBACK_MODE (0x0001 | HCI_GRP_TESTING_CMDS) 294 #define HCI_WRITE_LOOPBACK_MODE (0x0002 | HCI_GRP_TESTING_CMDS) 295 #define HCI_ENABLE_DEV_UNDER_TEST_MODE (0x0003 | HCI_GRP_TESTING_CMDS) 296 #define HCI_WRITE_SIMP_PAIR_DEBUG_MODE (0x0004 | HCI_GRP_TESTING_CMDS) 297 298 /* AMP HCI */ 299 #define HCI_ENABLE_AMP_RCVR_REPORTS (0x0007 | HCI_GRP_TESTING_CMDS) 300 #define HCI_AMP_TEST_END (0x0008 | HCI_GRP_TESTING_CMDS) 301 #define HCI_AMP_TEST (0x0009 | HCI_GRP_TESTING_CMDS) 302 303 #define HCI_TESTING_CMDS_FIRST HCI_READ_LOOPBACK_MODE 304 #define HCI_TESTING_CMDS_LAST HCI_AMP_TEST 305 306 #define HCI_VENDOR_CMDS_FIRST 0x0001 307 #define HCI_VENDOR_CMDS_LAST 0xFFFF 308 #define HCI_VSC_MULTI_AV_HANDLE 0x0AAA 309 #define HCI_VSC_BURST_MODE_HANDLE 0x0BBB 310 311 /* BLE HCI Group Commands */ 312 /* Commands of BLE Controller setup and configuration */ 313 #define HCI_BLE_SET_EVENT_MASK (0x0001 | HCI_GRP_BLE_CMDS) 314 #define HCI_BLE_READ_BUFFER_SIZE (0x0002 | HCI_GRP_BLE_CMDS) 315 #define HCI_BLE_READ_LOCAL_SPT_FEAT (0x0003 | HCI_GRP_BLE_CMDS) 316 #define HCI_BLE_WRITE_LOCAL_SPT_FEAT (0x0004 | HCI_GRP_BLE_CMDS) 317 #define HCI_BLE_WRITE_RANDOM_ADDR (0x0005 | HCI_GRP_BLE_CMDS) 318 #define HCI_BLE_WRITE_ADV_PARAMS (0x0006 | HCI_GRP_BLE_CMDS) 319 #define HCI_BLE_READ_ADV_CHNL_TX_POWER (0x0007 | HCI_GRP_BLE_CMDS) 320 #define HCI_BLE_WRITE_ADV_DATA (0x0008 | HCI_GRP_BLE_CMDS) 321 #define HCI_BLE_WRITE_SCAN_RSP_DATA (0x0009 | HCI_GRP_BLE_CMDS) 322 #define HCI_BLE_WRITE_ADV_ENABLE (0x000A | HCI_GRP_BLE_CMDS) 323 #define HCI_BLE_WRITE_SCAN_PARAMS (0x000B | HCI_GRP_BLE_CMDS) 324 #define HCI_BLE_WRITE_SCAN_ENABLE (0x000C | HCI_GRP_BLE_CMDS) 325 #define HCI_BLE_CREATE_LL_CONN (0x000D | HCI_GRP_BLE_CMDS) 326 #define HCI_BLE_CREATE_CONN_CANCEL (0x000E | HCI_GRP_BLE_CMDS) 327 #define HCI_BLE_READ_WHITE_LIST_SIZE (0x000F | HCI_GRP_BLE_CMDS) 328 #define HCI_BLE_CLEAR_WHITE_LIST (0x0010 | HCI_GRP_BLE_CMDS) 329 #define HCI_BLE_ADD_WHITE_LIST (0x0011 | HCI_GRP_BLE_CMDS) 330 #define HCI_BLE_REMOVE_WHITE_LIST (0x0012 | HCI_GRP_BLE_CMDS) 331 #define HCI_BLE_UPD_LL_CONN_PARAMS (0x0013 | HCI_GRP_BLE_CMDS) 332 #define HCI_BLE_SET_HOST_CHNL_CLASS (0x0014 | HCI_GRP_BLE_CMDS) 333 #define HCI_BLE_READ_CHNL_MAP (0x0015 | HCI_GRP_BLE_CMDS) 334 #define HCI_BLE_READ_REMOTE_FEAT (0x0016 | HCI_GRP_BLE_CMDS) 335 #define HCI_BLE_ENCRYPT (0x0017 | HCI_GRP_BLE_CMDS) 336 #define HCI_BLE_RAND (0x0018 | HCI_GRP_BLE_CMDS) 337 #define HCI_BLE_START_ENC (0x0019 | HCI_GRP_BLE_CMDS) 338 #define HCI_BLE_LTK_REQ_REPLY (0x001A | HCI_GRP_BLE_CMDS) 339 #define HCI_BLE_LTK_REQ_NEG_REPLY (0x001B | HCI_GRP_BLE_CMDS) 340 #define HCI_BLE_READ_SUPPORTED_STATES (0x001C | HCI_GRP_BLE_CMDS) 341 /* 0x001D, 0x001E and 0x001F are reserved */ 342 #define HCI_BLE_RECEIVER_TEST (0x001D | HCI_GRP_BLE_CMDS) 343 #define HCI_BLE_TRANSMITTER_TEST (0x001E | HCI_GRP_BLE_CMDS) 344 /* BLE TEST COMMANDS */ 345 #define HCI_BLE_TEST_END (0x001F | HCI_GRP_BLE_CMDS) 346 #define HCI_BLE_RC_PARAM_REQ_REPLY (0x0020 | HCI_GRP_BLE_CMDS) 347 #define HCI_BLE_RC_PARAM_REQ_NEG_REPLY (0x0021 | HCI_GRP_BLE_CMDS) 348 349 #define HCI_BLE_SET_DATA_LENGTH (0x0022 | HCI_GRP_BLE_CMDS) 350 #define HCI_BLE_READ_DEFAULT_DATA_LENGTH (0x0023 | HCI_GRP_BLE_CMDS) 351 #define HCI_BLE_WRITE_DEFAULT_DATA_LENGTH (0x0024 | HCI_GRP_BLE_CMDS) 352 353 #define HCI_BLE_ADD_DEV_RESOLVING_LIST (0x0027 | HCI_GRP_BLE_CMDS) 354 #define HCI_BLE_RM_DEV_RESOLVING_LIST (0x0028 | HCI_GRP_BLE_CMDS) 355 #define HCI_BLE_CLEAR_RESOLVING_LIST (0x0029 | HCI_GRP_BLE_CMDS) 356 #define HCI_BLE_READ_RESOLVING_LIST_SIZE (0x002A | HCI_GRP_BLE_CMDS) 357 #define HCI_BLE_READ_RESOLVABLE_ADDR_PEER (0x002B | HCI_GRP_BLE_CMDS) 358 #define HCI_BLE_READ_RESOLVABLE_ADDR_LOCAL (0x002C | HCI_GRP_BLE_CMDS) 359 #define HCI_BLE_SET_ADDR_RESOLUTION_ENABLE (0x002D | HCI_GRP_BLE_CMDS) 360 #define HCI_BLE_SET_RAND_PRIV_ADDR_TIMOUT (0x002E | HCI_GRP_BLE_CMDS) 361 #define HCI_BLE_READ_PHY (0x0030 | HCI_GRP_BLE_CMDS) 362 #define HCI_BLE_SET_DEFAULT_PHY (0x0031 | HCI_GRP_BLE_CMDS) 363 #define HCI_BLE_SET_PHY (0x0032 | HCI_GRP_BLE_CMDS) 364 #define HCI_BLE_ENH_RECEIVER_TEST (0x0033 | HCI_GRP_BLE_CMDS) 365 #define HCI_BLE_ENH_TRANSMITTER_TEST (0x0034 | HCI_GRP_BLE_CMDS) 366 #define HCI_LE_SET_EXT_ADVERTISING_RANDOM_ADDRESS (0x35 | HCI_GRP_BLE_CMDS) 367 #define HCI_LE_SET_EXT_ADVERTISING_PARAM (0x36 | HCI_GRP_BLE_CMDS) 368 #define HCI_LE_SET_EXT_ADVERTISING_DATA (0x37 | HCI_GRP_BLE_CMDS) 369 #define HCI_LE_SET_EXT_ADVERTISING_SCAN_RESP (0x38 | HCI_GRP_BLE_CMDS) 370 #define HCI_LE_SET_EXT_ADVERTISING_ENABLE (0x39 | HCI_GRP_BLE_CMDS) 371 #define HCI_LE_READ_MAXIMUM_ADVERTISING_DATA_LENGTH (0x003A | HCI_GRP_BLE_CMDS) 372 #define HCI_LE_READ_NUMBER_OF_SUPPORTED_ADVERTISING_SETS \ 373 (0x003B | HCI_GRP_BLE_CMDS) 374 #define HCI_LE_REMOVE_ADVERTISING_SET (0x003C | HCI_GRP_BLE_CMDS) 375 #define HCI_LE_CLEAR_ADVERTISING_SETS (0x003D | HCI_GRP_BLE_CMDS) 376 #define HCI_LE_SET_PERIODIC_ADVERTISING_PARAM (0x003E | HCI_GRP_BLE_CMDS) 377 #define HCI_LE_SET_PERIODIC_ADVERTISING_DATA (0x003F | HCI_GRP_BLE_CMDS) 378 #define HCI_LE_SET_PERIODIC_ADVERTISING_ENABLE (0x0040 | HCI_GRP_BLE_CMDS) 379 #define HCI_LE_SET_EXTENDED_SCAN_PARAMETERS (0x0041 | HCI_GRP_BLE_CMDS) 380 #define HCI_LE_SET_EXTENDED_SCAN_ENABLE (0x0042 | HCI_GRP_BLE_CMDS) 381 #define HCI_LE_EXTENDED_CREATE_CONNECTION (0x0043 | HCI_GRP_BLE_CMDS) 382 #define HCI_BLE_SET_PRIVACY_MODE (0x004E | HCI_GRP_BLE_CMDS) 383 384 /* LE Get Vendor Capabilities Command OCF */ 385 #define HCI_BLE_VENDOR_CAP_OCF (0x0153 | HCI_GRP_VENDOR_SPECIFIC) 386 387 /* Multi adv OCF */ 388 #define HCI_BLE_MULTI_ADV_OCF (0x0154 | HCI_GRP_VENDOR_SPECIFIC) 389 390 /* Batch scan OCF */ 391 #define HCI_BLE_BATCH_SCAN_OCF (0x0156 | HCI_GRP_VENDOR_SPECIFIC) 392 393 /* ADV filter OCF */ 394 #define HCI_BLE_ADV_FILTER_OCF (0x0157 | HCI_GRP_VENDOR_SPECIFIC) 395 396 /* Tracking OCF */ 397 #define HCI_BLE_TRACK_ADV_OCF (0x0158 | HCI_GRP_VENDOR_SPECIFIC) 398 399 /* Energy info OCF */ 400 #define HCI_BLE_ENERGY_INFO_OCF (0x0159 | HCI_GRP_VENDOR_SPECIFIC) 401 402 /* Extended BLE Scan parameters OCF */ 403 #define HCI_BLE_EXTENDED_SCAN_PARAMS_OCF (0x015A | HCI_GRP_VENDOR_SPECIFIC) 404 405 /* Controller debug info OCF */ 406 #define HCI_CONTROLLER_DEBUG_INFO_OCF (0x015B | HCI_GRP_VENDOR_SPECIFIC) 407 408 /* subcode for multi adv feature */ 409 #define BTM_BLE_MULTI_ADV_SET_PARAM 0x01 410 #define BTM_BLE_MULTI_ADV_WRITE_ADV_DATA 0x02 411 #define BTM_BLE_MULTI_ADV_WRITE_SCAN_RSP_DATA 0x03 412 #define BTM_BLE_MULTI_ADV_SET_RANDOM_ADDR 0x04 413 #define BTM_BLE_MULTI_ADV_ENB 0x05 414 415 /* multi adv VSE subcode */ 416 /* multi adv instance state change */ 417 #define HCI_VSE_SUBCODE_BLE_MULTI_ADV_ST_CHG 0x55 418 419 /* subcode for batch scan feature */ 420 #define BTM_BLE_BATCH_SCAN_ENB_DISAB_CUST_FEATURE 0x01 421 #define BTM_BLE_BATCH_SCAN_SET_STORAGE_PARAM 0x02 422 #define BTM_BLE_BATCH_SCAN_SET_PARAMS 0x03 423 #define BTM_BLE_BATCH_SCAN_READ_RESULTS 0x04 424 425 /* batch scan VSE subcode */ 426 #define HCI_VSE_SUBCODE_BLE_THRESHOLD_SUB_EVT 0x54 /* Threshold event */ 427 428 /* tracking sub event */ 429 #define HCI_VSE_SUBCODE_BLE_TRACKING_SUB_EVT 0x56 /* Tracking event */ 430 431 /* debug info sub event */ 432 #define HCI_VSE_SUBCODE_DEBUG_INFO_SUB_EVT 0x57 433 434 /* LE supported states definition */ 435 #define HCI_LE_ADV_STATE 0x00000001 436 #define HCI_LE_SCAN_STATE 0x00000002 437 #define HCI_LE_INIT_STATE 0x00000004 438 #define HCI_LE_CONN_SL_STATE 0x00000008 439 #define HCI_LE_ADV_SCAN_STATE 0x00000010 440 #define HCI_LE_ADV_INIT_STATE 0x00000020 441 #define HCI_LE_ADV_MA_STATE 0x00000040 442 #define HCI_LE_ADV_SL_STATE 0x00000080 443 #define HCI_LE_SCAN_INIT_STATE 0x00000100 444 #define HCI_LE_SCAN_MA_STATE 0x00000200 445 #define HCI_LE_SCAN_SL_STATE 0x00000400 446 #define HCI_LE_INIT_MA_STATE 0x00000800 447 448 /* LE Supported States */ 449 constexpr uint8_t HCI_LE_STATES_NON_CONN_ADV_BIT = 0; 450 constexpr uint8_t HCI_LE_STATES_SCAN_ADV_BIT = 1; 451 constexpr uint8_t HCI_LE_STATES_CONN_ADV_BIT = 2; 452 constexpr uint8_t HCI_LE_STATES_HI_DUTY_DIR_ADV_BIT = 3; 453 constexpr uint8_t HCI_LE_STATES_PASS_SCAN_BIT = 4; 454 constexpr uint8_t HCI_LE_STATES_ACTIVE_SCAN_BIT = 5; 455 constexpr uint8_t HCI_LE_STATES_INIT_BIT = 6; 456 constexpr uint8_t HCI_LE_STATES_SLAVE_BIT = 7; 457 constexpr uint8_t HCI_LE_STATES_NON_CONN_ADV_PASS_SCAN_BIT = 8; 458 constexpr uint8_t HCI_LE_STATES_SCAN_ADV_PASS_SCAN_BIT = 9; 459 constexpr uint8_t HCI_LE_STATES_CONN_ADV_PASS_SCAN_BIT = 10; 460 constexpr uint8_t HCI_LE_STATES_HI_DUTY_DIR_ADV_PASS_SCAN_BIT = 11; 461 constexpr uint8_t HCI_LE_STATES_NON_CONN_ADV_ACTIVE_SCAN_BIT = 12; 462 constexpr uint8_t HCI_LE_STATES_SCAN_ADV_ACTIVE_SCAN_BIT = 13; 463 constexpr uint8_t HCI_LE_STATES_CONN_ADV_ACTIVE_SCAN_BIT = 14; 464 constexpr uint8_t HCI_LE_STATES_HI_DUTY_DIR_ADV_ACTIVE_SCAN_BIT = 15; 465 constexpr uint8_t HCI_LE_STATES_NON_CONN_INIT_BIT = 16; 466 constexpr uint8_t HCI_LE_STATES_SCAN_ADV_INIT_BIT = 17; 467 constexpr uint8_t HCI_LE_STATES_NON_CONN_ADV_MASTER_BIT = 18; 468 constexpr uint8_t HCI_LE_STATES_SCAN_ADV_MASTER_BIT = 19; 469 constexpr uint8_t HCI_LE_STATES_NON_CONN_ADV_SLAVE_BIT = 20; 470 constexpr uint8_t HCI_LE_STATES_SCAN_ADV_SLAVE_BIT = 21; 471 constexpr uint8_t HCI_LE_STATES_PASS_SCAN_INIT_BIT = 22; 472 constexpr uint8_t HCI_LE_STATES_ACTIVE_SCAN_INIT_BIT = 23; 473 constexpr uint8_t HCI_LE_STATES_PASS_SCAN_MASTER_BIT = 24; 474 constexpr uint8_t HCI_LE_STATES_ACTIVE_SCAN_MASTER_BIT = 25; 475 constexpr uint8_t HCI_LE_STATES_PASS_SCAN_SLAVE_BIT = 26; 476 constexpr uint8_t HCI_LE_STATES_ACTIVE_SCAN_SLAVE_BIT = 27; 477 constexpr uint8_t HCI_LE_STATES_INIT_MASTER_BIT = 28; 478 constexpr uint8_t HCI_LE_STATES_LOW_DUTY_DIR_ADV_BIT = 29; 479 constexpr uint8_t HCI_LE_STATES_LO_DUTY_DIR_ADV_PASS_SCAN_BIT = 30; 480 constexpr uint8_t HCI_LE_STATES_LO_DUTY_DIR_ADV_ACTIVE_SCAN_BIT = 31; 481 constexpr uint8_t HCI_LE_STATES_CONN_ADV_INIT_BIT = 32; 482 constexpr uint8_t HCI_LE_STATES_HI_DUTY_DIR_ADV_INIT_BIT = 33; 483 constexpr uint8_t HCI_LE_STATES_LO_DUTY_DIR_ADV_INIT_BIT = 34; 484 constexpr uint8_t HCI_LE_STATES_CONN_ADV_MASTER_BIT = 35; 485 constexpr uint8_t HCI_LE_STATES_HI_DUTY_DIR_ADV_MASTER_BIT = 36; 486 constexpr uint8_t HCI_LE_STATES_LO_DUTY_DIR_ADV_MASTER_BIT = 37; 487 constexpr uint8_t HCI_LE_STATES_CONN_ADV_SLAVE_BIT = 38; 488 constexpr uint8_t HCI_LE_STATES_HI_DUTY_DIR_ADV_SLAVE_BIT = 39; 489 constexpr uint8_t HCI_LE_STATES_LO_DUTY_DIR_ADV_SLAVE_BIT = 40; 490 constexpr uint8_t HCI_LE_STATES_INIT_MASTER_SLAVE_BIT = 41; 491 492 /* 493 * Definitions for HCI Events 494 */ 495 #define HCI_INQUIRY_COMP_EVT 0x01 496 #define HCI_INQUIRY_RESULT_EVT 0x02 497 #define HCI_CONNECTION_COMP_EVT 0x03 498 #define HCI_CONNECTION_REQUEST_EVT 0x04 499 #define HCI_DISCONNECTION_COMP_EVT 0x05 500 #define HCI_AUTHENTICATION_COMP_EVT 0x06 501 #define HCI_RMT_NAME_REQUEST_COMP_EVT 0x07 502 #define HCI_ENCRYPTION_CHANGE_EVT 0x08 503 #define HCI_CHANGE_CONN_LINK_KEY_EVT 0x09 504 #define HCI_MASTER_LINK_KEY_COMP_EVT 0x0A 505 #define HCI_READ_RMT_FEATURES_COMP_EVT 0x0B 506 #define HCI_READ_RMT_VERSION_COMP_EVT 0x0C 507 #define HCI_QOS_SETUP_COMP_EVT 0x0D 508 #define HCI_COMMAND_COMPLETE_EVT 0x0E 509 #define HCI_COMMAND_STATUS_EVT 0x0F 510 #define HCI_HARDWARE_ERROR_EVT 0x10 511 #define HCI_FLUSH_OCCURED_EVT 0x11 512 #define HCI_ROLE_CHANGE_EVT 0x12 513 #define HCI_NUM_COMPL_DATA_PKTS_EVT 0x13 514 #define HCI_MODE_CHANGE_EVT 0x14 515 #define HCI_RETURN_LINK_KEYS_EVT 0x15 516 #define HCI_PIN_CODE_REQUEST_EVT 0x16 517 #define HCI_LINK_KEY_REQUEST_EVT 0x17 518 #define HCI_LINK_KEY_NOTIFICATION_EVT 0x18 519 #define HCI_LOOPBACK_COMMAND_EVT 0x19 520 #define HCI_DATA_BUF_OVERFLOW_EVT 0x1A 521 #define HCI_MAX_SLOTS_CHANGED_EVT 0x1B 522 #define HCI_READ_CLOCK_OFF_COMP_EVT 0x1C 523 #define HCI_CONN_PKT_TYPE_CHANGE_EVT 0x1D 524 #define HCI_QOS_VIOLATION_EVT 0x1E 525 #define HCI_PAGE_SCAN_MODE_CHANGE_EVT 0x1F 526 #define HCI_PAGE_SCAN_REP_MODE_CHNG_EVT 0x20 527 #define HCI_FLOW_SPECIFICATION_COMP_EVT 0x21 528 #define HCI_INQUIRY_RSSI_RESULT_EVT 0x22 529 #define HCI_READ_RMT_EXT_FEATURES_COMP_EVT 0x23 530 #define HCI_ESCO_CONNECTION_COMP_EVT 0x2C 531 #define HCI_ESCO_CONNECTION_CHANGED_EVT 0x2D 532 #define HCI_SNIFF_SUB_RATE_EVT 0x2E 533 #define HCI_EXTENDED_INQUIRY_RESULT_EVT 0x2F 534 #define HCI_ENCRYPTION_KEY_REFRESH_COMP_EVT 0x30 535 #define HCI_IO_CAPABILITY_REQUEST_EVT 0x31 536 #define HCI_IO_CAPABILITY_RESPONSE_EVT 0x32 537 #define HCI_USER_CONFIRMATION_REQUEST_EVT 0x33 538 #define HCI_USER_PASSKEY_REQUEST_EVT 0x34 539 #define HCI_REMOTE_OOB_DATA_REQUEST_EVT 0x35 540 #define HCI_SIMPLE_PAIRING_COMPLETE_EVT 0x36 541 #define HCI_LINK_SUPER_TOUT_CHANGED_EVT 0x38 542 #define HCI_ENHANCED_FLUSH_COMPLETE_EVT 0x39 543 #define HCI_USER_PASSKEY_NOTIFY_EVT 0x3B 544 #define HCI_KEYPRESS_NOTIFY_EVT 0x3C 545 #define HCI_RMT_HOST_SUP_FEAT_NOTIFY_EVT 0x3D 546 547 /*#define HCI_GENERIC_AMP_LINK_KEY_NOTIF_EVT 0x3E Removed from spec */ 548 #define HCI_PHYSICAL_LINK_COMP_EVT 0x40 549 #define HCI_CHANNEL_SELECTED_EVT 0x41 550 #define HCI_DISC_PHYSICAL_LINK_COMP_EVT 0x42 551 #define HCI_PHY_LINK_LOSS_EARLY_WARNING_EVT 0x43 552 #define HCI_PHY_LINK_RECOVERY_EVT 0x44 553 #define HCI_LOGICAL_LINK_COMP_EVT 0x45 554 #define HCI_DISC_LOGICAL_LINK_COMP_EVT 0x46 555 #define HCI_FLOW_SPEC_MODIFY_COMP_EVT 0x47 556 #define HCI_NUM_COMPL_DATA_BLOCKS_EVT 0x48 557 #define HCI_SHORT_RANGE_MODE_COMPLETE_EVT 0x4C 558 #define HCI_AMP_STATUS_CHANGE_EVT 0x4D 559 #define HCI_SET_TRIGGERED_CLOCK_CAPTURE_EVT 0x4E 560 561 /* ULP HCI Event */ 562 #define HCI_BLE_EVENT 0x3e 563 /* ULP Event sub code */ 564 #define HCI_BLE_CONN_COMPLETE_EVT 0x01 565 #define HCI_BLE_ADV_PKT_RPT_EVT 0x02 566 #define HCI_BLE_LL_CONN_PARAM_UPD_EVT 0x03 567 #define HCI_BLE_READ_REMOTE_FEAT_CMPL_EVT 0x04 568 #define HCI_BLE_LTK_REQ_EVT 0x05 569 #define HCI_BLE_RC_PARAM_REQ_EVT 0x06 570 #define HCI_BLE_DATA_LENGTH_CHANGE_EVT 0x07 571 #define HCI_BLE_ENHANCED_CONN_COMPLETE_EVT 0x0a 572 #define HCI_BLE_DIRECT_ADV_EVT 0x0b 573 #define HCI_BLE_PHY_UPDATE_COMPLETE_EVT 0x0c 574 #define HCI_LE_EXTENDED_ADVERTISING_REPORT_EVT 0x0D 575 #define HCI_LE_ADVERTISING_SET_TERMINATED_EVT 0x12 576 577 /* Definitions for LE Channel Map */ 578 #define HCI_BLE_CHNL_MAP_SIZE 5 579 580 #define HCI_VENDOR_SPECIFIC_EVT 0xFF /* Vendor specific events */ 581 #define HCI_NAP_TRACE_EVT \ 582 0xFF /* was define 0xFE, 0xFD, change to 0xFF \ 583 because conflict w/ TCI_EVT and per \ 584 specification compliant */ 585 586 /* 587 * Defentions for HCI Error Codes that are past in the events 588 */ 589 #define HCI_SUCCESS 0x00 590 #define HCI_PENDING 0x00 591 #define HCI_ERR_ILLEGAL_COMMAND 0x01 592 #define HCI_ERR_NO_CONNECTION 0x02 593 #define HCI_ERR_HW_FAILURE 0x03 594 #define HCI_ERR_PAGE_TIMEOUT 0x04 595 #define HCI_ERR_AUTH_FAILURE 0x05 596 #define HCI_ERR_KEY_MISSING 0x06 597 #define HCI_ERR_MEMORY_FULL 0x07 598 #define HCI_ERR_CONNECTION_TOUT 0x08 599 #define HCI_ERR_MAX_NUM_OF_CONNECTIONS 0x09 600 #define HCI_ERR_MAX_NUM_OF_SCOS 0x0A 601 #define HCI_ERR_CONNECTION_EXISTS 0x0B 602 #define HCI_ERR_COMMAND_DISALLOWED 0x0C 603 #define HCI_ERR_HOST_REJECT_RESOURCES 0x0D 604 #define HCI_ERR_HOST_REJECT_SECURITY 0x0E 605 #define HCI_ERR_HOST_REJECT_DEVICE 0x0F 606 #define HCI_ERR_HOST_TIMEOUT 0x10 607 #define HCI_ERR_UNSUPPORTED_VALUE 0x11 608 #define HCI_ERR_ILLEGAL_PARAMETER_FMT 0x12 609 #define HCI_ERR_PEER_USER 0x13 610 #define HCI_ERR_PEER_LOW_RESOURCES 0x14 611 #define HCI_ERR_PEER_POWER_OFF 0x15 612 #define HCI_ERR_CONN_CAUSE_LOCAL_HOST 0x16 613 #define HCI_ERR_REPEATED_ATTEMPTS 0x17 614 #define HCI_ERR_PAIRING_NOT_ALLOWED 0x18 615 #define HCI_ERR_UNKNOWN_LMP_PDU 0x19 616 #define HCI_ERR_UNSUPPORTED_REM_FEATURE 0x1A 617 #define HCI_ERR_SCO_OFFSET_REJECTED 0x1B 618 #define HCI_ERR_SCO_INTERVAL_REJECTED 0x1C 619 #define HCI_ERR_SCO_AIR_MODE 0x1D 620 #define HCI_ERR_INVALID_LMP_PARAM 0x1E 621 #define HCI_ERR_UNSPECIFIED 0x1F 622 #define HCI_ERR_UNSUPPORTED_LMP_FEATURE 0x20 623 #define HCI_ERR_ROLE_CHANGE_NOT_ALLOWED 0x21 624 #define HCI_ERR_LMP_RESPONSE_TIMEOUT 0x22 625 #define HCI_ERR_LMP_ERR_TRANS_COLLISION 0x23 626 #define HCI_ERR_LMP_PDU_NOT_ALLOWED 0x24 627 #define HCI_ERR_ENCRY_MODE_NOT_ACCEPTABLE 0x25 628 #define HCI_ERR_UNIT_KEY_USED 0x26 629 #define HCI_ERR_QOS_NOT_SUPPORTED 0x27 630 #define HCI_ERR_INSTANT_PASSED 0x28 631 #define HCI_ERR_PAIRING_WITH_UNIT_KEY_NOT_SUPPORTED 0x29 632 #define HCI_ERR_DIFF_TRANSACTION_COLLISION 0x2A 633 #define HCI_ERR_UNDEFINED_0x2B 0x2B 634 #define HCI_ERR_QOS_UNACCEPTABLE_PARAM 0x2C 635 #define HCI_ERR_QOS_REJECTED 0x2D 636 #define HCI_ERR_CHAN_CLASSIF_NOT_SUPPORTED 0x2E 637 #define HCI_ERR_INSUFFCIENT_SECURITY 0x2F 638 #define HCI_ERR_PARAM_OUT_OF_RANGE 0x30 639 #define HCI_ERR_UNDEFINED_0x31 0x31 640 #define HCI_ERR_ROLE_SWITCH_PENDING 0x32 641 #define HCI_ERR_UNDEFINED_0x33 0x33 642 #define HCI_ERR_RESERVED_SLOT_VIOLATION 0x34 643 #define HCI_ERR_ROLE_SWITCH_FAILED 0x35 644 #define HCI_ERR_INQ_RSP_DATA_TOO_LARGE 0x36 645 #define HCI_ERR_SIMPLE_PAIRING_NOT_SUPPORTED 0x37 646 #define HCI_ERR_HOST_BUSY_PAIRING 0x38 647 #define HCI_ERR_REJ_NO_SUITABLE_CHANNEL 0x39 648 #define HCI_ERR_CONTROLLER_BUSY 0x3A 649 #define HCI_ERR_UNACCEPT_CONN_INTERVAL 0x3B 650 #define HCI_ERR_DIRECTED_ADVERTISING_TIMEOUT 0x3C 651 #define HCI_ERR_CONN_TOUT_DUE_TO_MIC_FAILURE 0x3D 652 #define HCI_ERR_CONN_FAILED_ESTABLISHMENT 0x3E 653 #define HCI_ERR_MAC_CONNECTION_FAILED 0x3F 654 655 /* ConnectionLess Broadcast errors */ 656 #define HCI_ERR_LT_ADDR_ALREADY_IN_USE 0x40 657 #define HCI_ERR_LT_ADDR_NOT_ALLOCATED 0x41 658 #define HCI_ERR_CLB_NOT_ENABLED 0x42 659 #define HCI_ERR_CLB_DATA_TOO_BIG 0x43 660 661 #define HCI_ERR_MAX_ERR 0x43 662 663 #define HCI_HINT_TO_RECREATE_AMP_PHYS_LINK 0xFF 664 665 /* 666 * Definitions for HCI enable event 667 */ 668 #define HCI_INQUIRY_COMPLETE_EV(p) (*((uint32_t*)(p)) & 0x00000001) 669 #define HCI_INQUIRY_RESULT_EV(p) (*((uint32_t*)(p)) & 0x00000002) 670 #define HCI_CONNECTION_COMPLETE_EV(p) (*((uint32_t*)(p)) & 0x00000004) 671 #define HCI_CONNECTION_REQUEST_EV(p) (*((uint32_t*)(p)) & 0x00000008) 672 #define HCI_DISCONNECTION_COMPLETE_EV(p) (*((uint32_t*)(p)) & 0x00000010) 673 #define HCI_AUTHENTICATION_COMPLETE_EV(p) (*((uint32_t*)(p)) & 0x00000020) 674 #define HCI_RMT_NAME_REQUEST_COMPL_EV(p) (*((uint32_t*)(p)) & 0x00000040) 675 #define HCI_CHANGE_CONN_ENCRPT_ENABLE_EV(p) (*((uint32_t*)(p)) & 0x00000080) 676 #define HCI_CHANGE_CONN_LINK_KEY_EV(p) (*((uint32_t*)(p)) & 0x00000100) 677 #define HCI_MASTER_LINK_KEY_COMPLETE_EV(p) (*((uint32_t*)(p)) & 0x00000200) 678 #define HCI_READ_RMT_FEATURES_COMPL_EV(p) (*((uint32_t*)(p)) & 0x00000400) 679 #define HCI_READ_RMT_VERSION_COMPL_EV(p) (*((uint32_t*)(p)) & 0x00000800) 680 #define HCI_QOS_SETUP_COMPLETE_EV(p) (*((uint32_t*)(p)) & 0x00001000) 681 #define HCI_COMMAND_COMPLETE_EV(p) (*((uint32_t*)(p)) & 0x00002000) 682 #define HCI_COMMAND_STATUS_EV(p) (*((uint32_t*)(p)) & 0x00004000) 683 #define HCI_HARDWARE_ERROR_EV(p) (*((uint32_t*)(p)) & 0x00008000) 684 #define HCI_FLASH_OCCURED_EV(p) (*((uint32_t*)(p)) & 0x00010000) 685 #define HCI_ROLE_CHANGE_EV(p) (*((uint32_t*)(p)) & 0x00020000) 686 #define HCI_NUM_COMPLETED_PKTS_EV(p) (*((uint32_t*)(p)) & 0x00040000) 687 #define HCI_MODE_CHANGE_EV(p) (*((uint32_t*)(p)) & 0x00080000) 688 #define HCI_RETURN_LINK_KEYS_EV(p) (*((uint32_t*)(p)) & 0x00100000) 689 #define HCI_PIN_CODE_REQUEST_EV(p) (*((uint32_t*)(p)) & 0x00200000) 690 #define HCI_LINK_KEY_REQUEST_EV(p) (*((uint32_t*)(p)) & 0x00400000) 691 #define HCI_LINK_KEY_NOTIFICATION_EV(p) (*((uint32_t*)(p)) & 0x00800000) 692 #define HCI_LOOPBACK_COMMAND_EV(p) (*((uint32_t*)(p)) & 0x01000000) 693 #define HCI_DATA_BUF_OVERFLOW_EV(p) (*((uint32_t*)(p)) & 0x02000000) 694 #define HCI_MAX_SLOTS_CHANGE_EV(p) (*((uint32_t*)(p)) & 0x04000000) 695 #define HCI_READ_CLOCK_OFFSET_COMP_EV(p) (*((uint32_t*)(p)) & 0x08000000) 696 #define HCI_CONN_PKT_TYPE_CHANGED_EV(p) (*((uint32_t*)(p)) & 0x10000000) 697 #define HCI_QOS_VIOLATION_EV(p) (*((uint32_t*)(p)) & 0x20000000) 698 #define HCI_PAGE_SCAN_MODE_CHANGED_EV(p) (*((uint32_t*)(p)) & 0x40000000) 699 #define HCI_PAGE_SCAN_REP_MODE_CHNG_EV(p) (*((uint32_t*)(p)) & 0x80000000) 700 701 /* the default event mask for 2.1+EDR (Lisbon) does not include Lisbon events */ 702 #define HCI_DEFAULT_EVENT_MASK_0 0xFFFFFFFF 703 #define HCI_DEFAULT_EVENT_MASK_1 0x00001FFF 704 705 /* the event mask for 2.0 + EDR and later (includes Lisbon events) */ 706 #define HCI_LISBON_EVENT_MASK_0 0xFFFFFFFF 707 #define HCI_LISBON_EVENT_MASK_1 0x1DBFFFFF 708 #define HCI_LISBON_EVENT_MASK \ 709 { 0x0D, 0xBF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF } 710 #define HCI_LISBON_EVENT_MASK_EXT \ 711 { 0x1D, 0xBF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF } 712 #define HCI_DUMO_EVENT_MASK_EXT \ 713 { 0x3D, 0xBF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF } 714 /* 0x00001FFF FFFFFFFF Default - no Lisbon events 715 0x00000800 00000000 Synchronous Connection Complete Event 716 0x00001000 00000000 Synchronous Connection Changed Event 717 0x00002000 00000000 Sniff Subrate Event 718 0x00004000 00000000 Extended Inquiry Result Event 719 0x00008000 00000000 Encryption Key Refresh Complete Event 720 0x00010000 00000000 IO Capability Request Event 721 0x00020000 00000000 IO Capability Response Event 722 0x00040000 00000000 User Confirmation Request Event 723 0x00080000 00000000 User Passkey Request Event 724 0x00100000 00000000 Remote OOB Data Request Event 725 0x00200000 00000000 Simple Pairing Complete Event 726 0x00400000 00000000 Generic AMP Link Key Notification Event 727 0x00800000 00000000 Link Supervision Timeout Changed Event 728 0x01000000 00000000 Enhanced Flush Complete Event 729 0x04000000 00000000 User Passkey Notification Event 730 0x08000000 00000000 Keypress Notification Event 731 0x10000000 00000000 Remote Host Supported Features Notification Event 732 0x20000000 00000000 LE Meta Event 733 */ 734 735 /* the event mask for AMP controllers */ 736 #define HCI_AMP_EVENT_MASK_3_0 "\x00\x00\x00\x00\x00\x00\x3F\xFF" 737 738 /* 0x0000000000000000 No events specified (default) 739 0x0000000000000001 Physical Link Complete Event 740 0x0000000000000002 Channel Selected Event 741 0x0000000000000004 Disconnection Physical Link Event 742 0x0000000000000008 Physical Link Loss Early Warning Event 743 0x0000000000000010 Physical Link Recovery Event 744 0x0000000000000020 Logical Link Complete Event 745 0x0000000000000040 Disconnection Logical Link Complete Event 746 0x0000000000000080 Flow Spec Modify Complete Event 747 0x0000000000000100 Number of Completed Data Blocks Event 748 0x0000000000000200 AMP Start Test Event 749 0x0000000000000400 AMP Test End Event 750 0x0000000000000800 AMP Receiver Report Event 751 0x0000000000001000 Short Range Mode Change Complete Event 752 0x0000000000002000 AMP Status Change Event 753 */ 754 755 /* the event mask page 2 (CLB + CSA4) for BR/EDR controller */ 756 #define HCI_PAGE_2_EVENT_MASK "\x00\x00\x00\x00\x00\x7F\xC0\x00" 757 /* 0x0000000000004000 Triggered Clock Capture Event 758 0x0000000000008000 Sync Train Complete Event 759 0x0000000000010000 Sync Train Received Event 760 0x0000000000020000 Connectionless Broadcast Receive Event 761 0x0000000000040000 Connectionless Broadcast Timeout Event 762 0x0000000000080000 Truncated Page Complete Event 763 0x0000000000100000 Salve Page Response Timeout Event 764 0x0000000000200000 Connectionless Broadcast Channel Map Change Event 765 0x0000000000400000 Inquiry Response Notification Event 766 */ 767 #if (BLE_PRIVACY_SPT == TRUE) 768 /* BLE event mask */ 769 #define HCI_BLE_EVENT_MASK_DEF "\x00\x00\x00\x00\x00\x00\x07\xff" 770 #else 771 #define HCI_BLE_EVENT_MASK_DEF "\x00\x00\x00\x00\x00\x00\x00\x7f" 772 #endif 773 /* 774 * Definitions for packet type masks (BT1.2 and BT2.0 definitions) 775 */ 776 #define HCI_PKT_TYPES_MASK_NO_2_DH1 0x0002 777 #define HCI_PKT_TYPES_MASK_NO_3_DH1 0x0004 778 #define HCI_PKT_TYPES_MASK_DM1 0x0008 779 #define HCI_PKT_TYPES_MASK_DH1 0x0010 780 #define HCI_PKT_TYPES_MASK_HV1 0x0020 781 #define HCI_PKT_TYPES_MASK_HV2 0x0040 782 #define HCI_PKT_TYPES_MASK_HV3 0x0080 783 #define HCI_PKT_TYPES_MASK_NO_2_DH3 0x0100 784 #define HCI_PKT_TYPES_MASK_NO_3_DH3 0x0200 785 #define HCI_PKT_TYPES_MASK_DM3 0x0400 786 #define HCI_PKT_TYPES_MASK_DH3 0x0800 787 #define HCI_PKT_TYPES_MASK_NO_2_DH5 0x1000 788 #define HCI_PKT_TYPES_MASK_NO_3_DH5 0x2000 789 #define HCI_PKT_TYPES_MASK_DM5 0x4000 790 #define HCI_PKT_TYPES_MASK_DH5 0x8000 791 792 /* Packet type should be one of valid but at least one should be specified */ 793 #define HCI_VALID_SCO_PKT_TYPE(t) \ 794 (((((t) & \ 795 ~(HCI_PKT_TYPES_MASK_HV1 | HCI_PKT_TYPES_MASK_HV2 | \ 796 HCI_PKT_TYPES_MASK_HV3)) == 0)) && \ 797 ((t) != 0)) 798 799 /* Packet type should not be invalid and at least one should be specified */ 800 #define HCI_VALID_ACL_PKT_TYPE(t) \ 801 (((((t) & \ 802 ~(HCI_PKT_TYPES_MASK_DM1 | HCI_PKT_TYPES_MASK_DH1 | \ 803 HCI_PKT_TYPES_MASK_DM3 | HCI_PKT_TYPES_MASK_DH3 | \ 804 HCI_PKT_TYPES_MASK_DM5 | HCI_PKT_TYPES_MASK_DH5 | \ 805 HCI_PKT_TYPES_MASK_NO_2_DH1 | HCI_PKT_TYPES_MASK_NO_3_DH1 | \ 806 HCI_PKT_TYPES_MASK_NO_2_DH3 | HCI_PKT_TYPES_MASK_NO_3_DH3 | \ 807 HCI_PKT_TYPES_MASK_NO_2_DH5 | HCI_PKT_TYPES_MASK_NO_3_DH5)) == 0)) && \ 808 (((t) & (HCI_PKT_TYPES_MASK_DM1 | HCI_PKT_TYPES_MASK_DH1 | \ 809 HCI_PKT_TYPES_MASK_DM3 | HCI_PKT_TYPES_MASK_DH3 | \ 810 HCI_PKT_TYPES_MASK_DM5 | HCI_PKT_TYPES_MASK_DH5)) != 0)) 811 812 /* Packet type should be one of valid but at least one should be specified for 813 * 1.2 */ 814 #define HCI_VALID_ESCO_PKT_TYPE(t) \ 815 (((((t) & \ 816 ~(HCI_ESCO_PKT_TYPES_MASK_EV3 | HCI_ESCO_PKT_TYPES_MASK_EV4 | \ 817 HCI_ESCO_PKT_TYPES_MASK_EV5)) == 0)) && \ 818 ((t) != 0)) /* Packet type should be one of valid but at least one should \ 819 be specified */ 820 821 #define HCI_VALID_ESCO_SCOPKT_TYPE(t) \ 822 (((((t) & \ 823 ~(ESCO_PKT_TYPES_MASK_HV1 | HCI_ESCO_PKT_TYPES_MASK_HV2 | \ 824 HCI_ESCO_PKT_TYPES_MASK_HV3)) == 0)) && \ 825 ((t) != 0)) 826 827 #define HCI_VALID_SCO_ALL_PKT_TYPE(t) \ 828 (((((t) & \ 829 ~(ESCO_PKT_TYPES_MASK_HV1 | HCI_ESCO_PKT_TYPES_MASK_HV2 | \ 830 HCI_ESCO_PKT_TYPES_MASK_HV3 | HCI_ESCO_PKT_TYPES_MASK_EV3 | \ 831 HCI_ESCO_PKT_TYPES_MASK_EV4 | HCI_ESCO_PKT_TYPES_MASK_EV5)) == 0)) && \ 832 ((t) != 0)) 833 834 /* 835 * Define parameters to allow role switch during create connection 836 */ 837 #define HCI_CR_CONN_NOT_ALLOW_SWITCH 0x00 838 #define HCI_CR_CONN_ALLOW_SWITCH 0x01 839 840 /* 841 * Hold Mode command destination 842 */ 843 #define HOLD_MODE_DEST_LOCAL_DEVICE 0x00 844 #define HOLD_MODE_DEST_RMT_DEVICE 0x01 845 846 /* 847 * Definitions for different HCI parameters 848 */ 849 #define HCI_PER_INQ_MIN_MAX_PERIOD 0x0003 850 #define HCI_PER_INQ_MAX_MAX_PERIOD 0xFFFF 851 #define HCI_PER_INQ_MIN_MIN_PERIOD 0x0002 852 #define HCI_PER_INQ_MAX_MIN_PERIOD 0xFFFE 853 854 #define HCI_MAX_INQUIRY_LENGTH 0x30 855 856 #define HCI_MIN_INQ_LAP 0x9E8B00 857 #define HCI_MAX_INQ_LAP 0x9E8B3F 858 859 /* HCI role defenitions */ 860 #define HCI_ROLE_MASTER 0x00 861 #define HCI_ROLE_SLAVE 0x01 862 #define HCI_ROLE_UNKNOWN 0xff 863 864 /* HCI mode defenitions */ 865 #define HCI_MODE_ACTIVE 0x00 866 #define HCI_MODE_HOLD 0x01 867 #define HCI_MODE_SNIFF 0x02 868 #define HCI_MODE_PARK 0x03 869 870 /* HCI Flow Control Mode defenitions */ 871 #define HCI_PACKET_BASED_FC_MODE 0x00 872 #define HCI_BLOCK_BASED_FC_MODE 0x01 873 874 /* Define Packet types as requested by the Host */ 875 #define HCI_ACL_PKT_TYPE_NONE 0x0000 876 #define HCI_ACL_PKT_TYPE_DM1 0x0008 877 #define HCI_ACL_PKT_TYPE_DH1 0x0010 878 #define HCI_ACL_PKT_TYPE_AUX1 0x0200 879 #define HCI_ACL_PKT_TYPE_DM3 0x0400 880 #define HCI_ACL_PKT_TYPE_DH3 0x0800 881 #define HCI_ACL_PKT_TYPE_DM5 0x4000 882 #define HCI_ACL_PKT_TYPE_DH5 0x8000 883 884 /* Define key type in the Master Link Key command */ 885 #define HCI_USE_SEMI_PERMANENT_KEY 0x00 886 #define HCI_USE_TEMPORARY_KEY 0x01 887 888 /* Page scan period modes */ 889 #define HCI_PAGE_SCAN_REP_MODE_R0 0x00 890 #define HCI_PAGE_SCAN_REP_MODE_R1 0x01 891 #define HCI_PAGE_SCAN_REP_MODE_R2 0x02 892 893 /* Define limits for page scan repetition modes */ 894 #define HCI_PAGE_SCAN_R1_LIMIT 0x0800 895 #define HCI_PAGE_SCAN_R2_LIMIT 0x1000 896 897 /* Page scan period modes */ 898 #define HCI_PAGE_SCAN_PER_MODE_P0 0x00 899 #define HCI_PAGE_SCAN_PER_MODE_P1 0x01 900 #define HCI_PAGE_SCAN_PER_MODE_P2 0x02 901 902 /* Page scan modes */ 903 #define HCI_MANDATARY_PAGE_SCAN_MODE 0x00 904 #define HCI_OPTIONAL_PAGE_SCAN_MODE1 0x01 905 #define HCI_OPTIONAL_PAGE_SCAN_MODE2 0x02 906 #define HCI_OPTIONAL_PAGE_SCAN_MODE3 0x03 907 908 /* Page and inquiry scan types */ 909 #define HCI_SCAN_TYPE_STANDARD 0x00 910 #define HCI_SCAN_TYPE_INTERLACED 0x01 /* 1.2 devices or later */ 911 #define HCI_DEF_SCAN_TYPE HCI_SCAN_TYPE_STANDARD 912 913 /* Definitions for quality of service service types */ 914 #define HCI_SERVICE_NO_TRAFFIC 0x00 915 #define HCI_SERVICE_BEST_EFFORT 0x01 916 #define HCI_SERVICE_GUARANTEED 0x02 917 918 #define HCI_QOS_LATENCY_DO_NOT_CARE 0xFFFFFFFF 919 #define HCI_QOS_DELAY_DO_NOT_CARE 0xFFFFFFFF 920 921 /* Definitions for Flow Specification */ 922 #define HCI_FLOW_SPEC_LATENCY_DO_NOT_CARE 0xFFFFFFFF 923 924 /* Definitions for AFH Channel Map */ 925 #define HCI_AFH_CHANNEL_MAP_LEN 10 926 927 /* Definitions for Extended Inquiry Response */ 928 #define HCI_EXT_INQ_RESPONSE_LEN 240 929 #define HCI_EIR_FLAGS_TYPE BT_EIR_FLAGS_TYPE 930 #define HCI_EIR_MORE_16BITS_UUID_TYPE BT_EIR_MORE_16BITS_UUID_TYPE 931 #define HCI_EIR_COMPLETE_16BITS_UUID_TYPE BT_EIR_COMPLETE_16BITS_UUID_TYPE 932 #define HCI_EIR_MORE_32BITS_UUID_TYPE BT_EIR_MORE_32BITS_UUID_TYPE 933 #define HCI_EIR_COMPLETE_32BITS_UUID_TYPE BT_EIR_COMPLETE_32BITS_UUID_TYPE 934 #define HCI_EIR_MORE_128BITS_UUID_TYPE BT_EIR_MORE_128BITS_UUID_TYPE 935 #define HCI_EIR_COMPLETE_128BITS_UUID_TYPE BT_EIR_COMPLETE_128BITS_UUID_TYPE 936 #define HCI_EIR_SHORTENED_LOCAL_NAME_TYPE BT_EIR_SHORTENED_LOCAL_NAME_TYPE 937 #define HCI_EIR_COMPLETE_LOCAL_NAME_TYPE BT_EIR_COMPLETE_LOCAL_NAME_TYPE 938 #define HCI_EIR_TX_POWER_LEVEL_TYPE BT_EIR_TX_POWER_LEVEL_TYPE 939 #define HCI_EIR_MANUFACTURER_SPECIFIC_TYPE BT_EIR_MANUFACTURER_SPECIFIC_TYPE 940 #define HCI_EIR_SERVICE_DATA_TYPE BT_EIR_SERVICE_DATA_TYPE 941 #define HCI_EIR_SERVICE_DATA_16BITS_UUID_TYPE \ 942 BT_EIR_SERVICE_DATA_16BITS_UUID_TYPE 943 #define HCI_EIR_SERVICE_DATA_32BITS_UUID_TYPE \ 944 BT_EIR_SERVICE_DATA_32BITS_UUID_TYPE 945 #define HCI_EIR_SERVICE_DATA_128BITS_UUID_TYPE \ 946 BT_EIR_SERVICE_DATA_128BITS_UUID_TYPE 947 #define HCI_EIR_OOB_BD_ADDR_TYPE BT_EIR_OOB_BD_ADDR_TYPE 948 #define HCI_EIR_OOB_COD_TYPE BT_EIR_OOB_COD_TYPE 949 #define HCI_EIR_OOB_SSP_HASH_C_TYPE BT_EIR_OOB_SSP_HASH_C_TYPE 950 #define HCI_EIR_OOB_SSP_RAND_R_TYPE BT_EIR_OOB_SSP_RAND_R_TYPE 951 952 /* Definitions for Write Simple Pairing Mode */ 953 #define HCI_SP_MODE_UNDEFINED 0x00 954 #define HCI_SP_MODE_ENABLED 0x01 955 956 /* Definitions for Write Simple Pairing Debug Mode */ 957 #define HCI_SPD_MODE_DISABLED 0x00 958 #define HCI_SPD_MODE_ENABLED 0x01 959 960 /* Definitions for Write Secure Connections Host Support */ 961 #define HCI_SC_MODE_DISABLED 0x00 962 #define HCI_SC_MODE_ENABLED 0x01 963 964 /* Definitions for IO Capability Response/Command */ 965 #define HCI_IO_CAP_DISPLAY_ONLY 0x00 966 #define HCI_IO_CAP_DISPLAY_YESNO 0x01 967 #define HCI_IO_CAP_KEYBOARD_ONLY 0x02 968 #define HCI_IO_CAP_NO_IO 0x03 969 970 #define HCI_OOB_AUTH_DATA_NOT_PRESENT 0x00 971 #define HCI_OOB_REM_AUTH_DATA_PRESENT 0x01 972 973 #define HCI_MITM_PROTECT_NOT_REQUIRED 0x00 974 #define HCI_MITM_PROTECT_REQUIRED 0x01 975 976 /* Policy settings status */ 977 #define HCI_DISABLE_ALL_LM_MODES 0x0000 978 #define HCI_ENABLE_MASTER_SLAVE_SWITCH 0x0001 979 #define HCI_ENABLE_HOLD_MODE 0x0002 980 #define HCI_ENABLE_SNIFF_MODE 0x0004 981 #define HCI_ENABLE_PARK_MODE 0x0008 982 983 /* By default allow switch, because host can not allow that */ 984 /* that until he created the connection */ 985 #define HCI_DEFAULT_POLICY_SETTINGS HCI_DISABLE_ALL_LM_MODES 986 987 /* Filters that are sent in set filter command */ 988 #define HCI_FILTER_TYPE_CLEAR_ALL 0x00 989 #define HCI_FILTER_INQUIRY_RESULT 0x01 990 #define HCI_FILTER_CONNECTION_SETUP 0x02 991 992 #define HCI_FILTER_COND_NEW_DEVICE 0x00 993 #define HCI_FILTER_COND_DEVICE_CLASS 0x01 994 #define HCI_FILTER_COND_BD_ADDR 0x02 995 996 #define HCI_DO_NOT_AUTO_ACCEPT_CONNECT 1 997 /* role switch disabled */ 998 #define HCI_DO_AUTO_ACCEPT_CONNECT 2 999 /* role switch enabled (1.1 errata 1115) */ 1000 #define HCI_DO_AUTO_ACCEPT_CONNECT_RS 3 1001 1002 /* Auto accept flags */ 1003 #define HCI_AUTO_ACCEPT_OFF 0x00 1004 #define HCI_AUTO_ACCEPT_ACL_CONNECTIONS 0x01 1005 #define HCI_AUTO_ACCEPT_SCO_CONNECTIONS 0x02 1006 1007 /* PIN type */ 1008 #define HCI_PIN_TYPE_VARIABLE 0 1009 #define HCI_PIN_TYPE_FIXED 1 1010 1011 /* Loopback Modes */ 1012 #define HCI_LOOPBACK_MODE_DISABLED 0 1013 #define HCI_LOOPBACK_MODE_LOCAL 1 1014 #define HCI_LOOPBACK_MODE_REMOTE 2 1015 1016 #define SLOTS_PER_10MS 16 /* 0.625 ms slots in a 10 ms tick */ 1017 1018 /* Maximum connection accept timeout in 0.625msec */ 1019 #define HCI_MAX_CONN_ACCEPT_TOUT 0xB540 /* 29 sec */ 1020 #define HCI_DEF_CONN_ACCEPT_TOUT 0x1F40 /* 5 sec */ 1021 1022 /* Page timeout is used in LC only and LC is counting down slots not using OS */ 1023 #define HCI_DEFAULT_PAGE_TOUT 0x2000 /* 5.12 sec (in slots) */ 1024 1025 /* Scan enable flags */ 1026 #define HCI_NO_SCAN_ENABLED 0x00 1027 #define HCI_INQUIRY_SCAN_ENABLED 0x01 1028 #define HCI_PAGE_SCAN_ENABLED 0x02 1029 1030 /* Pagescan timer definitions in 0.625 ms */ 1031 #define HCI_MIN_PAGESCAN_INTERVAL 0x12 /* 11.25 ms */ 1032 #define HCI_MAX_PAGESCAN_INTERVAL 0x1000 /* 2.56 sec */ 1033 #define HCI_DEF_PAGESCAN_INTERVAL 0x0800 /* 1.28 sec */ 1034 1035 /* Parameter for pagescan window is passed to LC and is kept in slots */ 1036 #define HCI_MIN_PAGESCAN_WINDOW 0x11 /* 10.625 ms */ 1037 #define HCI_MAX_PAGESCAN_WINDOW 0x1000 /* 2.56 sec */ 1038 #define HCI_DEF_PAGESCAN_WINDOW 0x12 /* 11.25 ms */ 1039 1040 /* Inquiryscan timer definitions in 0.625 ms */ 1041 #define HCI_MIN_INQUIRYSCAN_INTERVAL 0x12 /* 11.25 ms */ 1042 #define HCI_MAX_INQUIRYSCAN_INTERVAL 0x1000 /* 2.56 sec */ 1043 #define HCI_DEF_INQUIRYSCAN_INTERVAL 0x1000 /* 2.56 sec */ 1044 1045 /* Parameter for inquiryscan window is passed to LC and is kept in slots */ 1046 #define HCI_MIN_INQUIRYSCAN_WINDOW 0x11 /* 10.625 ms */ 1047 #define HCI_MAX_INQUIRYSCAN_WINDOW 0x1000 /* 2.56 sec */ 1048 #define HCI_DEF_INQUIRYSCAN_WINDOW 0x12 /* 11.25 ms */ 1049 1050 /* Encryption modes */ 1051 #define HCI_ENCRYPT_MODE_DISABLED 0x00 1052 #define HCI_ENCRYPT_MODE_POINT_TO_POINT 0x01 1053 #define HCI_ENCRYPT_MODE_ALL 0x02 1054 1055 /* Voice settings */ 1056 #define HCI_INP_CODING_LINEAR 0x0000 /* 0000000000 */ 1057 #define HCI_INP_CODING_U_LAW 0x0100 /* 0100000000 */ 1058 #define HCI_INP_CODING_A_LAW 0x0200 /* 1000000000 */ 1059 #define HCI_INP_CODING_MASK 0x0300 /* 1100000000 */ 1060 1061 #define HCI_INP_DATA_FMT_1S_COMPLEMENT 0x0000 /* 0000000000 */ 1062 #define HCI_INP_DATA_FMT_2S_COMPLEMENT 0x0040 /* 0001000000 */ 1063 #define HCI_INP_DATA_FMT_SIGN_MAGNITUDE 0x0080 /* 0010000000 */ 1064 #define HCI_INP_DATA_FMT_UNSIGNED 0x00c0 /* 0011000000 */ 1065 #define HCI_INP_DATA_FMT_MASK 0x00c0 /* 0011000000 */ 1066 1067 #define HCI_INP_SAMPLE_SIZE_8BIT 0x0000 /* 0000000000 */ 1068 #define HCI_INP_SAMPLE_SIZE_16BIT 0x0020 /* 0000100000 */ 1069 #define HCI_INP_SAMPLE_SIZE_MASK 0x0020 /* 0000100000 */ 1070 1071 #define HCI_INP_LINEAR_PCM_BIT_POS_MASK 0x001c /* 0000011100 */ 1072 #define HCI_INP_LINEAR_PCM_BIT_POS_OFFS 2 1073 1074 #define HCI_AIR_CODING_FORMAT_CVSD 0x0000 /* 0000000000 */ 1075 #define HCI_AIR_CODING_FORMAT_U_LAW 0x0001 /* 0000000001 */ 1076 #define HCI_AIR_CODING_FORMAT_A_LAW 0x0002 /* 0000000010 */ 1077 #define HCI_AIR_CODING_FORMAT_TRANSPNT 0x0003 /* 0000000011 */ 1078 #define HCI_AIR_CODING_FORMAT_MASK 0x0003 /* 0000000011 */ 1079 1080 /* default 0001100000 */ 1081 #define HCI_DEFAULT_VOICE_SETTINGS \ 1082 (HCI_INP_CODING_LINEAR | HCI_INP_DATA_FMT_2S_COMPLEMENT | \ 1083 HCI_INP_SAMPLE_SIZE_16BIT | HCI_AIR_CODING_FORMAT_CVSD) 1084 1085 #define HCI_CVSD_SUPPORTED(x) \ 1086 (((x)&HCI_AIR_CODING_FORMAT_MASK) == HCI_AIR_CODING_FORMAT_CVSD) 1087 #define HCI_U_LAW_SUPPORTED(x) \ 1088 (((x)&HCI_AIR_CODING_FORMAT_MASK) == HCI_AIR_CODING_FORMAT_U_LAW) 1089 #define HCI_A_LAW_SUPPORTED(x) \ 1090 (((x)&HCI_AIR_CODING_FORMAT_MASK) == HCI_AIR_CODING_FORMAT_A_LAW) 1091 #define HCI_TRANSPNT_SUPPORTED(x) \ 1092 (((x)&HCI_AIR_CODING_FORMAT_MASK) == HCI_AIR_CODING_FORMAT_TRANSPNT) 1093 1094 /* Retransmit timer definitions in 0.625 */ 1095 #define HCI_MAX_AUTOMATIC_FLUSH_TIMEOUT 0x07FF 1096 #define HCI_DEFAULT_AUTOMATIC_FLUSH_TIMEOUT 0 /* No auto flush */ 1097 1098 /* Broadcast retransmitions */ 1099 #define HCI_DEFAULT_NUM_BCAST_RETRAN 1 1100 1101 /* Define broadcast data types as passed in the hci data packet */ 1102 #define HCI_DATA_POINT_TO_POINT 0x00 1103 #define HCI_DATA_ACTIVE_BCAST 0x01 1104 #define HCI_DATA_PICONET_BCAST 0x02 1105 1106 /* Hold mode activity */ 1107 #define HCI_MAINTAIN_CUR_POWER_STATE 0x00 1108 #define HCI_SUSPEND_PAGE_SCAN 0x01 1109 #define HCI_SUSPEND_INQUIRY_SCAN 0x02 1110 #define HCI_SUSPEND_PERIODIC_INQUIRIES 0x04 1111 1112 /* Default Link Supervision timeoout */ 1113 #define HCI_DEFAULT_INACT_TOUT 0x7D00 /* BR/EDR (20 seconds) */ 1114 #define HCI_DEFAULT_AMP_INACT_TOUT 0x3E80 /* AMP (10 seconds) */ 1115 1116 /* Read transmit power level parameter */ 1117 #define HCI_READ_CURRENT 0x00 1118 #define HCI_READ_MAXIMUM 0x01 1119 1120 /* Link types for connection complete event */ 1121 #define HCI_LINK_TYPE_SCO 0x00 1122 #define HCI_LINK_TYPE_ACL 0x01 1123 #define HCI_LINK_TYPE_ESCO 0x02 1124 1125 /* Link Key Notification Event (Key Type) definitions */ 1126 #define HCI_LKEY_TYPE_COMBINATION 0x00 1127 #define HCI_LKEY_TYPE_LOCAL_UNIT 0x01 1128 #define HCI_LKEY_TYPE_REMOTE_UNIT 0x02 1129 #define HCI_LKEY_TYPE_DEBUG_COMB 0x03 1130 #define HCI_LKEY_TYPE_UNAUTH_COMB 0x04 1131 #define HCI_LKEY_TYPE_AUTH_COMB 0x05 1132 #define HCI_LKEY_TYPE_CHANGED_COMB 0x06 1133 #define HCI_LKEY_TYPE_UNAUTH_COMB_P_256 0x07 1134 #define HCI_LKEY_TYPE_AUTH_COMB_P_256 0x08 1135 1136 /* Internal definitions - not used over HCI */ 1137 #define HCI_LKEY_TYPE_AMP_WIFI 0x80 1138 #define HCI_LKEY_TYPE_AMP_UWB 0x81 1139 #define HCI_LKEY_TYPE_UNKNOWN 0xff 1140 1141 /* Read Local Version HCI Version return values (Command Complete Event) */ 1142 #define HCI_VERSION_1_0B 0x00 1143 #define HCI_VERSION_1_1 0x01 1144 1145 /* Define an invalid value for a handle */ 1146 #define HCI_INVALID_HANDLE 0xFFFF 1147 1148 /* Define max ammount of data in the HCI command */ 1149 #define HCI_COMMAND_SIZE 255 1150 1151 /* Define the preamble length for all HCI Commands. 1152 * This is 2-bytes for opcode and 1 byte for length 1153 */ 1154 #define HCIC_PREAMBLE_SIZE 3 1155 1156 /* Define the preamble length for all HCI Events 1157 * This is 1-byte for opcode and 1 byte for length 1158 */ 1159 #define HCIE_PREAMBLE_SIZE 2 1160 #define HCI_SCO_PREAMBLE_SIZE 3 1161 #define HCI_DATA_PREAMBLE_SIZE 4 1162 1163 /* local Bluetooth controller id for AMP HCI */ 1164 #define LOCAL_BR_EDR_CONTROLLER_ID 0 1165 1166 /* controller id types for AMP HCI */ 1167 #define HCI_CONTROLLER_TYPE_BR_EDR 0 1168 #define HCI_CONTROLLER_TYPE_802_11 1 1169 #define HCI_CONTROLLER_TYPE_ECMA 2 1170 #define HCI_MAX_CONTROLLER_TYPES 3 1171 1172 /* ConnectionLess Broadcast */ 1173 #define HCI_CLB_DISABLE 0x00 1174 #define HCI_CLB_ENABLE 0x01 1175 1176 /* ConnectionLess Broadcast Data fragment */ 1177 #define HCI_CLB_FRAGMENT_CONT 0x00 1178 #define HCI_CLB_FRAGMENT_START 0x01 1179 #define HCI_CLB_FRAGMENT_END 0x02 1180 #define HCI_CLB_FRAGMENT_SINGLE 0x03 1181 1182 /* AMP Controller Status codes 1183 */ 1184 #define HCI_AMP_CTRLR_PHYSICALLY_DOWN 0 1185 #define HCI_AMP_CTRLR_USABLE_BY_BT 1 1186 #define HCI_AMP_CTRLR_UNUSABLE_FOR_BT 2 1187 #define HCI_AMP_CTRLR_LOW_CAP_FOR_BT 3 1188 #define HCI_AMP_CTRLR_MED_CAP_FOR_BT 4 1189 #define HCI_AMP_CTRLR_HIGH_CAP_FOR_BT 5 1190 #define HCI_AMP_CTRLR_FULL_CAP_FOR_BT 6 1191 1192 #define HCI_MAX_AMP_STATUS_TYPES 7 1193 1194 /* Define the extended flow specification fields used by AMP */ 1195 typedef struct { 1196 uint8_t id; 1197 uint8_t stype; 1198 uint16_t max_sdu_size; 1199 uint32_t sdu_inter_time; 1200 uint32_t access_latency; 1201 uint32_t flush_timeout; 1202 } tHCI_EXT_FLOW_SPEC; 1203 1204 /* HCI message type definitions (for H4 messages) */ 1205 #define HCIT_TYPE_COMMAND 1 1206 #define HCIT_TYPE_ACL_DATA 2 1207 #define HCIT_TYPE_SCO_DATA 3 1208 #define HCIT_TYPE_EVENT 4 1209 #define HCIT_TYPE_LM_DIAG 7 1210 #define HCIT_TYPE_NFC 16 1211 1212 #define HCIT_LM_DIAG_LENGTH 63 1213 1214 /* Parameter information for HCI_BRCM_SET_ACL_PRIORITY */ 1215 #define HCI_BRCM_ACL_PRIORITY_PARAM_SIZE 3 1216 #define HCI_BRCM_ACL_PRIORITY_LOW 0x00 1217 #define HCI_BRCM_ACL_PRIORITY_HIGH 0xFF 1218 #define HCI_BRCM_SET_ACL_PRIORITY (0x0057 | HCI_GRP_VENDOR_SPECIFIC) 1219 1220 /* Define values for LMP Test Control parameters 1221 * Test Scenario, Hopping Mode, Power Control Mode 1222 */ 1223 #define LMP_TESTCTL_TESTSC_PAUSE 0 1224 #define LMP_TESTCTL_TESTSC_TXTEST_0 1 1225 #define LMP_TESTCTL_TESTSC_TXTEST_1 2 1226 #define LMP_TESTCTL_TESTSC_TXTEST_1010 3 1227 #define LMP_TESTCTL_TESTSC_PSRND_BITSEQ 4 1228 #define LMP_TESTCTL_TESTSC_CLOSEDLB_ACL 5 1229 #define LMP_TESTCTL_TESTSC_CLOSEDLB_SCO 6 1230 #define LMP_TESTCTL_TESTSC_ACL_NOWHIT 7 1231 #define LMP_TESTCTL_TESTSC_SCO_NOWHIT 8 1232 #define LMP_TESTCTL_TESTSC_TXTEST_11110000 9 1233 #define LMP_TESTCTL_TESTSC_EXITTESTMODE 255 1234 1235 #define LMP_TESTCTL_HOPMOD_RXTX1FREQ 0 1236 #define LMP_TESTCTL_HOPMOD_HOP_EURUSA 1 1237 #define LMP_TESTCTL_HOPMOD_HOP_JAPAN 2 1238 #define LMP_TESTCTL_HOPMOD_HOP_FRANCE 3 1239 #define LMP_TESTCTL_HOPMOD_HOP_SPAIN 4 1240 #define LMP_TESTCTL_HOPMOD_REDUCED_HOP 5 1241 1242 #define LMP_TESTCTL_POWCTL_FIXEDTX_OP 0 1243 #define LMP_TESTCTL_POWCTL_ADAPTIVE 1 1244 1245 // TODO(zachoverflow): remove this once broadcom specific hacks are removed 1246 #define LMP_COMPID_BROADCOM 15 1247 1248 /* 1249 * Define the packet types in the packet header, and a couple extra 1250 */ 1251 #define PKT_TYPE_NULL 0x00 1252 #define PKT_TYPE_POLL 0x01 1253 #define PKT_TYPE_FHS 0x02 1254 #define PKT_TYPE_DM1 0x03 1255 1256 #define PKT_TYPE_DH1 0x04 1257 #define PKT_TYPE_HV1 0x05 1258 #define PKT_TYPE_HV2 0x06 1259 #define PKT_TYPE_HV3 0x07 1260 #define PKT_TYPE_DV 0x08 1261 #define PKT_TYPE_AUX1 0x09 1262 1263 #define PKT_TYPE_DM3 0x0a 1264 #define PKT_TYPE_DH3 0x0b 1265 1266 #define PKT_TYPE_DM5 0x0e 1267 #define PKT_TYPE_DH5 0x0f 1268 1269 #define PKT_TYPE_ID 0x10 /* Internally used packet types */ 1270 #define PKT_TYPE_BAD 0x11 1271 #define PKT_TYPE_NONE 0x12 1272 1273 /* 1274 * Define packet size 1275 */ 1276 #define HCI_DM1_PACKET_SIZE 17 1277 #define HCI_DH1_PACKET_SIZE 27 1278 #define HCI_DM3_PACKET_SIZE 121 1279 #define HCI_DH3_PACKET_SIZE 183 1280 #define HCI_DM5_PACKET_SIZE 224 1281 #define HCI_DH5_PACKET_SIZE 339 1282 #define HCI_AUX1_PACKET_SIZE 29 1283 #define HCI_HV1_PACKET_SIZE 10 1284 #define HCI_HV2_PACKET_SIZE 20 1285 #define HCI_HV3_PACKET_SIZE 30 1286 #define HCI_DV_PACKET_SIZE 9 1287 #define HCI_EDR2_DH1_PACKET_SIZE 54 1288 #define HCI_EDR2_DH3_PACKET_SIZE 367 1289 #define HCI_EDR2_DH5_PACKET_SIZE 679 1290 #define HCI_EDR3_DH1_PACKET_SIZE 83 1291 #define HCI_EDR3_DH3_PACKET_SIZE 552 1292 #define HCI_EDR3_DH5_PACKET_SIZE 1021 1293 1294 /* Feature Pages */ 1295 #define HCI_EXT_FEATURES_PAGE_MAX 3 // Parse feature pages 0-3 1296 1297 #define HCI_FEATURE_BYTES_PER_PAGE 8 1298 1299 #define HCI_FEATURES_KNOWN(x) \ 1300 (((x)[0] | (x)[1] | (x)[2] | (x)[3] | (x)[4] | (x)[5] | (x)[6] | (x)[7]) != 0) 1301 1302 /* LMP features encoding - page 0 */ 1303 #define HCI_3_SLOT_PACKETS_SUPPORTED(x) ((x)[0] & 0x01) 1304 #define HCI_5_SLOT_PACKETS_SUPPORTED(x) ((x)[0] & 0x02) 1305 #define HCI_ENCRYPTION_SUPPORTED(x) ((x)[0] & 0x04) 1306 #define HCI_SLOT_OFFSET_SUPPORTED(x) ((x)[0] & 0x08) 1307 #define HCI_TIMING_ACC_SUPPORTED(x) ((x)[0] & 0x10) 1308 #define HCI_SWITCH_SUPPORTED(x) ((x)[0] & 0x20) 1309 #define HCI_HOLD_MODE_SUPPORTED(x) ((x)[0] & 0x40) 1310 #define HCI_SNIFF_MODE_SUPPORTED(x) ((x)[0] & 0x80) 1311 1312 #define HCI_PARK_MODE_SUPPORTED(x) ((x)[1] & 0x01) 1313 #define HCI_RSSI_SUPPORTED(x) ((x)[1] & 0x02) 1314 #define HCI_CQM_DATA_RATE_SUPPORTED(x) ((x)[1] & 0x04) 1315 #define HCI_SCO_LINK_SUPPORTED(x) ((x)[1] & 0x08) 1316 #define HCI_HV2_PACKETS_SUPPORTED(x) ((x)[1] & 0x10) 1317 #define HCI_HV3_PACKETS_SUPPORTED(x) ((x)[1] & 0x20) 1318 #define HCI_LMP_U_LAW_SUPPORTED(x) ((x)[1] & 0x40) 1319 #define HCI_LMP_A_LAW_SUPPORTED(x) ((x)[1] & 0x80) 1320 1321 #define HCI_LMP_CVSD_SUPPORTED(x) ((x)[2] & 0x01) 1322 #define HCI_PAGING_SCHEME_SUPPORTED(x) ((x)[2] & 0x02) 1323 #define HCI_POWER_CTRL_SUPPORTED(x) ((x)[2] & 0x04) 1324 #define HCI_LMP_TRANSPNT_SUPPORTED(x) ((x)[2] & 0x08) 1325 #define HCI_FLOW_CTRL_LAG_VALUE(x) (((x)[2] & 0x70) >> 4) 1326 #define HCI_LMP_BCAST_ENC_SUPPORTED(x) ((x)[2] & 0x80) 1327 1328 #define HCI_LMP_SCATTER_MODE_SUPPORTED(x) ((x)[3] & 0x01) 1329 #define HCI_EDR_ACL_2MPS_SUPPORTED(x) ((x)[3] & 0x02) 1330 #define HCI_EDR_ACL_3MPS_SUPPORTED(x) ((x)[3] & 0x04) 1331 #define HCI_ENHANCED_INQ_SUPPORTED(x) ((x)[3] & 0x08) 1332 #define HCI_LMP_INTERLACED_INQ_SCAN_SUPPORTED(x) ((x)[3] & 0x10) 1333 #define HCI_LMP_INTERLACED_PAGE_SCAN_SUPPORTED(x) ((x)[3] & 0x20) 1334 #define HCI_LMP_INQ_RSSI_SUPPORTED(x) ((x)[3] & 0x40) 1335 #define HCI_ESCO_EV3_SUPPORTED(x) ((x)[3] & 0x80) 1336 1337 #define HCI_ESCO_EV4_SUPPORTED(x) ((x)[4] & 0x01) 1338 #define HCI_ESCO_EV5_SUPPORTED(x) ((x)[4] & 0x02) 1339 #define HCI_LMP_ABSENCE_MASKS_SUPPORTED(x) ((x)[4] & 0x04) 1340 #define HCI_LMP_AFH_CAP_SLAVE_SUPPORTED(x) ((x)[4] & 0x08) 1341 #define HCI_LMP_AFH_CLASS_SLAVE_SUPPORTED(x) ((x)[4] & 0x10) 1342 #define HCI_BREDR_NOT_SPT_SUPPORTED(x) ((x)[4] & 0x20) 1343 #define HCI_LE_SPT_SUPPORTED(x) ((x)[4] & 0x40) 1344 #define HCI_3_SLOT_EDR_ACL_SUPPORTED(x) ((x)[4] & 0x80) 1345 1346 #define HCI_5_SLOT_EDR_ACL_SUPPORTED(x) ((x)[5] & 0x01) 1347 #define HCI_SNIFF_SUB_RATE_SUPPORTED(x) ((x)[5] & 0x02) 1348 #define HCI_ATOMIC_ENCRYPT_SUPPORTED(x) ((x)[5] & 0x04) 1349 #define HCI_LMP_AFH_CAP_MASTR_SUPPORTED(x) ((x)[5] & 0x08) 1350 #define HCI_LMP_AFH_CLASS_MASTR_SUPPORTED(x) ((x)[5] & 0x10) 1351 #define HCI_EDR_ESCO_2MPS_SUPPORTED(x) ((x)[5] & 0x20) 1352 #define HCI_EDR_ESCO_3MPS_SUPPORTED(x) ((x)[5] & 0x40) 1353 #define HCI_3_SLOT_EDR_ESCO_SUPPORTED(x) ((x)[5] & 0x80) 1354 1355 #define HCI_EXT_INQ_RSP_SUPPORTED(x) ((x)[6] & 0x01) 1356 #define HCI_SIMUL_LE_BREDR_SUPPORTED(x) ((x)[6] & 0x02) 1357 #define HCI_ANUM_PIN_CAP_SUPPORTED(x) ((x)[6] & 0x04) 1358 #define HCI_SIMPLE_PAIRING_SUPPORTED(x) ((x)[6] & 0x08) 1359 #define HCI_ENCAP_PDU_SUPPORTED(x) ((x)[6] & 0x10) 1360 #define HCI_ERROR_DATA_SUPPORTED(x) ((x)[6] & 0x20) 1361 /* This feature is causing frequent link drops when doing call switch with 1362 * certain av/hfp headsets */ 1363 // TODO: move the disabling somewhere else 1364 #define HCI_NON_FLUSHABLE_PB_SUPPORTED(x) (0) //((x)[6] & 0x40) 1365 #define HCI_LINK_SUP_TO_EVT_SUPPORTED(x) ((x)[7] & 0x01) 1366 #define HCI_INQ_RESP_TX_SUPPORTED(x) ((x)[7] & 0x02) 1367 #define HCI_LMP_EXTENDED_SUPPORTED(x) ((x)[7] & 0x80) 1368 1369 /* LMP features encoding - page 1 */ 1370 #define HCI_SSP_HOST_SUPPORTED(x) ((x)[0] & 0x01) 1371 #define HCI_LE_HOST_SUPPORTED(x) ((x)[0] & 0x02) 1372 #define HCI_SIMUL_DUMO_HOST_SUPPORTED(x) ((x)[0] & 0x04) 1373 #define HCI_SC_HOST_SUPPORTED(x) ((x)[0] & 0x08) 1374 1375 /* LMP features encoding - page 2 */ 1376 #define HCI_CSB_MASTER_SUPPORTED(x) ((x)[0] & 0x01) 1377 #define HCI_CSB_SLAVE_SUPPORTED(x) ((x)[0] & 0x02) 1378 #define HCI_SYNC_TRAIN_MASTER_SUPPORTED(x) ((x)[0] & 0x04) 1379 #define HCI_SYNC_SCAN_SLAVE_SUPPORTED(x) ((x)[0] & 0x08) 1380 #define HCI_INQ_RESP_NOTIF_SUPPORTED(x) ((x)[0] & 0x10) 1381 1382 #define HCI_SC_CTRLR_SUPPORTED(x) ((x)[1] & 0x01) 1383 #define HCI_PING_SUPPORTED(x) ((x)[1] & 0x02) 1384 1385 /* LE features encoding - page 0 (the only page for now) */ 1386 #define HCI_LE_ENCRYPTION_SUPPORTED(x) ((x)[0] & 0x01) 1387 #define HCI_LE_CONN_PARAM_REQ_SUPPORTED(x) ((x)[0] & 0x02) 1388 #define HCI_LE_EXT_REJ_IND_SUPPORTED(x) ((x)[0] & 0x04) 1389 #define HCI_LE_SLAVE_INIT_FEAT_EXC_SUPPORTED(x) ((x)[0] & 0x08) 1390 #define HCI_LE_DATA_LEN_EXT_SUPPORTED(x) ((x)[0] & 0x20) 1391 #define HCI_LE_ENHANCED_PRIVACY_SUPPORTED(x) ((x)[0] & 0x40) 1392 #define HCI_LE_EXT_SCAN_FILTER_POLICY_SUPPORTED(x) ((x)[0] & 0x80) 1393 1394 #define HCI_LE_2M_PHY_SUPPORTED(x) ((x)[1] & 0x01) 1395 #define HCI_LE_CODED_PHY_SUPPORTED(x) ((x)[1] & 0x08) 1396 #define HCI_LE_EXTENDED_ADVERTISING_SUPPORTED(x) ((x)[1] & 0x10) 1397 #define HCI_LE_PERIODIC_ADVERTISING_SUPPORTED(x) ((x)[1] & 0x20) 1398 1399 /* Supported Commands*/ 1400 #define HCI_NUM_SUPP_COMMANDS_BYTES 64 1401 1402 #define HCI_INQUIRY_SUPPORTED(x) ((x)[0] & 0x01) 1403 #define HCI_INQUIRY_CANCEL_SUPPORTED(x) ((x)[0] & 0x02) 1404 #define HCI_PERIODIC_INQUIRY_SUPPORTED(x) ((x)[0] & 0x04) 1405 #define HCI_EXIT_PERIODIC_INQUIRY_SUPPORTED(x) ((x)[0] & 0x08) 1406 #define HCI_CREATE_CONN_SUPPORTED(x) ((x)[0] & 0x10) 1407 #define HCI_DISCONNECT_SUPPORTED(x) ((x)[0] & 0x20) 1408 #define HCI_ADD_SCO_CONN_SUPPORTED(x) ((x)[0] & 0x40) 1409 #define HCI_CANCEL_CREATE_CONN_SUPPORTED(x) ((x)[0] & 0x80) 1410 1411 #define HCI_ACCEPT_CONN_REQUEST_SUPPORTED(x) ((x)[1] & 0x01) 1412 #define HCI_REJECT_CONN_REQUEST_SUPPORTED(x) ((x)[1] & 0x02) 1413 #define HCI_LINK_KEY_REQUEST_REPLY_SUPPORTED(x) ((x)[1] & 0x04) 1414 #define HCI_LINK_KEY_REQUEST_NEG_REPLY_SUPPORTED(x) ((x)[1] & 0x08) 1415 #define HCI_PIN_CODE_REQUEST_REPLY_SUPPORTED(x) ((x)[1] & 0x10) 1416 #define HCI_PIN_CODE_REQUEST_NEG_REPLY_SUPPORTED(x) ((x)[1] & 0x20) 1417 #define HCI_CHANGE_CONN_PKT_TYPE_SUPPORTED(x) ((x)[1] & 0x40) 1418 #define HCI_AUTH_REQUEST_SUPPORTED(x) ((x)[1] & 0x80) 1419 1420 #define HCI_SET_CONN_ENCRYPTION_SUPPORTED(x) ((x)[2] & 0x01) 1421 #define HCI_CHANGE_CONN_LINK_KEY_SUPPORTED(x) ((x)[2] & 0x02) 1422 #define HCI_MASTER_LINK_KEY_SUPPORTED(x) ((x)[2] & 0x04) 1423 #define HCI_REMOTE_NAME_REQUEST_SUPPORTED(x) ((x)[2] & 0x08) 1424 #define HCI_CANCEL_REMOTE_NAME_REQUEST_SUPPORTED(x) ((x)[2] & 0x10) 1425 #define HCI_READ_REMOTE_SUPP_FEATURES_SUPPORTED(x) ((x)[2] & 0x20) 1426 #define HCI_READ_REMOTE_EXT_FEATURES_SUPPORTED(x) ((x)[2] & 0x40) 1427 #define HCI_READ_REMOTE_VER_INFO_SUPPORTED(x) ((x)[2] & 0x80) 1428 1429 #define HCI_READ_CLOCK_OFFSET_SUPPORTED(x) ((x)[3] & 0x01) 1430 #define HCI_READ_LMP_HANDLE_SUPPORTED(x) ((x)[3] & 0x02) 1431 /* rest of bits in 3-rd byte are reserved */ 1432 1433 #define HCI_HOLD_MODE_CMD_SUPPORTED(x) ((x)[4] & 0x02) 1434 #define HCI_SNIFF_MODE_CMD_SUPPORTED(x) ((x)[4] & 0x04) 1435 #define HCI_EXIT_SNIFF_MODE_SUPPORTED(x) ((x)[4] & 0x08) 1436 #define HCI_PARK_STATE_SUPPORTED(x) ((x)[4] & 0x10) 1437 #define HCI_EXIT_PARK_STATE_SUPPORTED(x) ((x)[4] & 0x20) 1438 #define HCI_QOS_SETUP_SUPPORTED(x) ((x)[4] & 0x40) 1439 #define HCI_ROLE_DISCOVERY_SUPPORTED(x) ((x)[4] & 0x80) 1440 1441 #define HCI_SWITCH_ROLE_SUPPORTED(x) ((x)[5] & 0x01) 1442 #define HCI_READ_LINK_POLICY_SET_SUPPORTED(x) ((x)[5] & 0x02) 1443 #define HCI_WRITE_LINK_POLICY_SET_SUPPORTED(x) ((x)[5] & 0x04) 1444 #define HCI_READ_DEF_LINK_POLICY_SET_SUPPORTED(x) ((x)[5] & 0x08) 1445 #define HCI_WRITE_DEF_LINK_POLICY_SET_SUPPORTED(x) ((x)[5] & 0x10) 1446 #define HCI_FLOW_SPECIFICATION_SUPPORTED(x) ((x)[5] & 0x20) 1447 #define HCI_SET_EVENT_MASK_SUPPORTED(x) ((x)[5] & 0x40) 1448 #define HCI_RESET_SUPPORTED(x) ((x)[5] & 0x80) 1449 1450 #define HCI_SET_EVENT_FILTER_SUPPORTED(x) ((x)[6] & 0x01) 1451 #define HCI_FLUSH_SUPPORTED(x) ((x)[6] & 0x02) 1452 #define HCI_READ_PIN_TYPE_SUPPORTED(x) ((x)[6] & 0x04) 1453 #define HCI_WRITE_PIN_TYPE_SUPPORTED(x) ((x)[6] & 0x08) 1454 #define HCI_CREATE_NEW_UNIT_KEY_SUPPORTED(x) ((x)[6] & 0x10) 1455 #define HCI_READ_STORED_LINK_KEY_SUPPORTED(x) ((x)[6] & 0x20) 1456 #define HCI_WRITE_STORED_LINK_KEY_SUPPORTED(x) ((x)[6] & 0x40) 1457 #define HCI_DELETE_STORED_LINK_KEY_SUPPORTED(x) ((x)[6] & 0x80) 1458 1459 #define HCI_WRITE_LOCAL_NAME_SUPPORTED(x) ((x)[7] & 0x01) 1460 #define HCI_READ_LOCAL_NAME_SUPPORTED(x) ((x)[7] & 0x02) 1461 #define HCI_READ_CONN_ACCEPT_TOUT_SUPPORTED(x) ((x)[7] & 0x04) 1462 #define HCI_WRITE_CONN_ACCEPT_TOUT_SUPPORTED(x) ((x)[7] & 0x08) 1463 #define HCI_READ_PAGE_TOUT_SUPPORTED(x) ((x)[7] & 0x10) 1464 #define HCI_WRITE_PAGE_TOUT_SUPPORTED(x) ((x)[7] & 0x20) 1465 #define HCI_READ_SCAN_ENABLE_SUPPORTED(x) ((x)[7] & 0x40) 1466 #define HCI_WRITE_SCAN_ENABLE_SUPPORTED(x) ((x)[7] & 0x80) 1467 1468 #define HCI_READ_PAGE_SCAN_ACTIVITY_SUPPORTED(x) ((x)[8] & 0x01) 1469 #define HCI_WRITE_PAGE_SCAN_ACTIVITY_SUPPORTED(x) ((x)[8] & 0x02) 1470 #define HCI_READ_INQURIY_SCAN_ACTIVITY_SUPPORTED(x) ((x)[8] & 0x04) 1471 #define HCI_WRITE_INQURIY_SCAN_ACTIVITY_SUPPORTED(x) ((x)[8] & 0x08) 1472 #define HCI_READ_AUTH_ENABLE_SUPPORTED(x) ((x)[8] & 0x10) 1473 #define HCI_WRITE_AUTH_ENABLE_SUPPORTED(x) ((x)[8] & 0x20) 1474 #define HCI_READ_ENCRYPT_ENABLE_SUPPORTED(x) ((x)[8] & 0x40) 1475 #define HCI_WRITE_ENCRYPT_ENABLE_SUPPORTED(x) ((x)[8] & 0x80) 1476 1477 #define HCI_READ_CLASS_DEVICE_SUPPORTED(x) ((x)[9] & 0x01) 1478 #define HCI_WRITE_CLASS_DEVICE_SUPPORTED(x) ((x)[9] & 0x02) 1479 #define HCI_READ_VOICE_SETTING_SUPPORTED(x) ((x)[9] & 0x04) 1480 #define HCI_WRITE_VOICE_SETTING_SUPPORTED(x) ((x)[9] & 0x08) 1481 #define HCI_READ_AUTOMATIC_FLUSH_TIMEOUT_SUPPORTED(x) ((x)[9] & 0x10) 1482 #define HCI_WRITE_AUTOMATIC_FLUSH_TIMEOUT_SUPPORTED(x) ((x)[9] & 0x20) 1483 #define HCI_READ_NUM_BROAD_RETRANS_SUPPORTED(x) ((x)[9] & 0x40) 1484 #define HCI_WRITE_NUM_BROAD_RETRANS_SUPPORTED(x) ((x)[9] & 0x80) 1485 1486 #define HCI_READ_HOLD_MODE_ACTIVITY_SUPPORTED(x) ((x)[10] & 0x01) 1487 #define HCI_WRITE_HOLD_MODE_ACTIVITY_SUPPORTED(x) ((x)[10] & 0x02) 1488 #define HCI_READ_TRANS_PWR_LEVEL_SUPPORTED(x) ((x)[10] & 0x04) 1489 #define HCI_READ_SYNCH_FLOW_CTRL_ENABLE_SUPPORTED(x) ((x)[10] & 0x08) 1490 #define HCI_WRITE_SYNCH_FLOW_CTRL_ENABLE_SUPPORTED(x) ((x)[10] & 0x10) 1491 #define HCI_SET_HOST_CTRLR_TO_HOST_FC_SUPPORTED(x) ((x)[10] & 0x20) 1492 #define HCI_HOST_BUFFER_SIZE_SUPPORTED(x) ((x)[10] & 0x40) 1493 #define HCI_HOST_NUM_COMPLETED_PKTS_SUPPORTED(x) ((x)[10] & 0x80) 1494 1495 #define HCI_READ_LINK_SUP_TOUT_SUPPORTED(x) ((x)[11] & 0x01) 1496 #define HCI_WRITE_LINK_SUP_TOUT_SUPPORTED(x) ((x)[11] & 0x02) 1497 #define HCI_READ_NUM_SUPP_IAC_SUPPORTED(x) ((x)[11] & 0x04) 1498 #define HCI_READ_CURRENT_IAC_LAP_SUPPORTED(x) ((x)[11] & 0x08) 1499 #define HCI_WRITE_CURRENT_IAC_LAP_SUPPORTED(x) ((x)[11] & 0x10) 1500 #define HCI_READ_PAGE_SCAN_PER_MODE_SUPPORTED(x) ((x)[11] & 0x20) 1501 #define HCI_WRITE_PAGE_SCAN_PER_MODE_SUPPORTED(x) ((x)[11] & 0x40) 1502 #define HCI_READ_PAGE_SCAN_MODE_SUPPORTED(x) ((x)[11] & 0x80) 1503 1504 #define HCI_WRITE_PAGE_SCAN_MODE_SUPPORTED(x) ((x)[12] & 0x01) 1505 #define HCI_SET_AFH_CHNL_CLASS_SUPPORTED(x) ((x)[12] & 0x02) 1506 #define HCI_READ_INQUIRY_SCAN_TYPE_SUPPORTED(x) ((x)[12] & 0x10) 1507 #define HCI_WRITE_INQUIRY_SCAN_TYPE_SUPPORTED(x) ((x)[12] & 0x20) 1508 #define HCI_READ_INQUIRY_MODE_SUPPORTED(x) ((x)[12] & 0x40) 1509 #define HCI_WRITE_INQUIRY_MODE_SUPPORTED(x) ((x)[12] & 0x80) 1510 1511 #define HCI_READ_PAGE_SCAN_TYPE_SUPPORTED(x) ((x)[13] & 0x01) 1512 #define HCI_WRITE_PAGE_SCAN_TYPE_SUPPORTED(x) ((x)[13] & 0x02) 1513 #define HCI_READ_AFH_CHNL_ASSESS_MODE_SUPPORTED(x) ((x)[13] & 0x04) 1514 #define HCI_WRITE_AFH_CHNL_ASSESS_MODE_SUPPORTED(x) ((x)[13] & 0x08) 1515 1516 #define HCI_READ_LOCAL_VER_INFO_SUPPORTED(x) ((x)[14] & 0x08) 1517 #define HCI_READ_LOCAL_SUP_CMDS_SUPPORTED(x) ((x)[14] & 0x10) 1518 #define HCI_READ_LOCAL_SUPP_FEATURES_SUPPORTED(x) ((x)[14] & 0x20) 1519 #define HCI_READ_LOCAL_EXT_FEATURES_SUPPORTED(x) ((x)[14] & 0x40) 1520 #define HCI_READ_BUFFER_SIZE_SUPPORTED(x) ((x)[14] & 0x80) 1521 1522 #define HCI_READ_COUNTRY_CODE_SUPPORTED(x) ((x)[15] & 0x01) 1523 #define HCI_READ_BD_ADDR_SUPPORTED(x) ((x)[15] & 0x02) 1524 #define HCI_READ_FAIL_CONTACT_CNTR_SUPPORTED(x) ((x)[15] & 0x04) 1525 #define HCI_RESET_FAIL_CONTACT_CNTR_SUPPORTED(x) ((x)[15] & 0x08) 1526 #define HCI_GET_LINK_QUALITY_SUPPORTED(x) ((x)[15] & 0x10) 1527 #define HCI_READ_RSSI_SUPPORTED(x) ((x)[15] & 0x20) 1528 #define HCI_READ_AFH_CH_MAP_SUPPORTED(x) ((x)[15] & 0x40) 1529 #define HCI_READ_BD_CLOCK_SUPPORTED(x) ((x)[15] & 0x80) 1530 1531 #define HCI_READ_LOOPBACK_MODE_SUPPORTED(x) ((x)[16] & 0x01) 1532 #define HCI_WRITE_LOOPBACK_MODE_SUPPORTED(x) ((x)[16] & 0x02) 1533 #define HCI_ENABLE_DEV_UNDER_TEST_SUPPORTED(x) ((x)[16] & 0x04) 1534 #define HCI_SETUP_SYNCH_CONN_SUPPORTED(x) ((x)[16] & 0x08) 1535 #define HCI_ACCEPT_SYNCH_CONN_SUPPORTED(x) ((x)[16] & 0x10) 1536 #define HCI_REJECT_SYNCH_CONN_SUPPORTED(x) ((x)[16] & 0x20) 1537 1538 #define HCI_READ_EXT_INQUIRY_RESP_SUPPORTED(x) ((x)[17] & 0x01) 1539 #define HCI_WRITE_EXT_INQUIRY_RESP_SUPPORTED(x) ((x)[17] & 0x02) 1540 #define HCI_REFRESH_ENCRYPTION_KEY_SUPPORTED(x) ((x)[17] & 0x04) 1541 #define HCI_SNIFF_SUB_RATE_CMD_SUPPORTED(x) ((x)[17] & 0x10) 1542 #define HCI_READ_SIMPLE_PAIRING_MODE_SUPPORTED(x) ((x)[17] & 0x20) 1543 #define HCI_WRITE_SIMPLE_PAIRING_MODE_SUPPORTED(x) ((x)[17] & 0x40) 1544 #define HCI_READ_LOCAL_OOB_DATA_SUPPORTED(x) ((x)[17] & 0x80) 1545 1546 #define HCI_READ_INQUIRY_RESPONSE_TX_POWER_SUPPORTED(x) ((x)[18] & 0x01) 1547 #define HCI_WRITE_INQUIRY_RESPONSE_TX_POWER_SUPPORTED(x) ((x)[18] & 0x02) 1548 #define HCI_READ_DEFAULT_ERRONEOUS_DATA_REPORTING_SUPPORTED(x) ((x)[18] & 0x04) 1549 #define HCI_WRITE_DEFAULT_ERRONEOUS_DATA_REPORTING_SUPPORTED(x) ((x)[18] & 0x08) 1550 #define HCI_IO_CAPABILITY_REQUEST_REPLY_SUPPORTED(x) ((x)[18] & 0x80) 1551 1552 #define HCI_USER_CONFIRMATION_REQUEST_REPLY_SUPPORTED(x) ((x)[19] & 0x01) 1553 #define HCI_USER_CONFIRMATION_REQUEST_NEG_REPLY_SUPPORTED(x) ((x)[19] & 0x02) 1554 #define HCI_USER_PASSKEY_REQUEST_REPLY_SUPPORTED(x) ((x)[19] & 0x04) 1555 #define HCI_USER_PASSKEY_REQUEST_NEG_REPLY_SUPPORTED(x) ((x)[19] & 0x08) 1556 #define HCI_REMOTE_OOB_DATA_REQUEST_REPLY_SUPPORTED(x) ((x)[19] & 0x10) 1557 #define HCI_WRITE_SIMPLE_PAIRING_DBG_MODE_SUPPORTED(x) ((x)[19] & 0x20) 1558 #define HCI_ENHANCED_FLUSH_SUPPORTED(x) ((x)[19] & 0x40) 1559 #define HCI_REMOTE_OOB_DATA_REQUEST_NEG_REPLY_SUPPORTED(x) ((x)[19] & 0x80) 1560 1561 #define HCI_SEND_NOTIF_SUPPORTED(x) ((x)[20] & 0x04) 1562 #define HCI_IO_CAP_REQ_NEG_REPLY_SUPPORTED(x) ((x)[20] & 0x08) 1563 #define HCI_READ_ENCR_KEY_SIZE_SUPPORTED(x) ((x)[20] & 0x10) 1564 1565 #define HCI_CREATE_PHYSICAL_LINK_SUPPORTED(x) ((x)[21] & 0x01) 1566 #define HCI_ACCEPT_PHYSICAL_LINK_SUPPORTED(x) ((x)[21] & 0x02) 1567 #define HCI_DISCONNECT_PHYSICAL_LINK_SUPPORTED(x) ((x)[21] & 0x04) 1568 #define HCI_CREATE_LOGICAL_LINK_SUPPORTED(x) ((x)[21] & 0x08) 1569 #define HCI_ACCEPT_LOGICAL_LINK_SUPPORTED(x) ((x)[21] & 0x10) 1570 #define HCI_DISCONNECT_LOGICAL_LINK_SUPPORTED(x) ((x)[21] & 0x20) 1571 #define HCI_LOGICAL_LINK_CANCEL_SUPPORTED(x) ((x)[21] & 0x40) 1572 #define HCI_FLOW_SPEC_MODIFY_SUPPORTED(x) ((x)[21] & 0x80) 1573 1574 #define HCI_READ_LOGICAL_LINK_ACCEPT_TIMEOUT_SUPPORTED(x) ((x)[22] & 0x01) 1575 #define HCI_WRITE_LOGICAL_LINK_ACCEPT_TIMEOUT_SUPPORTED(x) ((x)[22] & 0x02) 1576 #define HCI_SET_EVENT_MASK_PAGE_2_SUPPORTED(x) ((x)[22] & 0x04) 1577 #define HCI_READ_LOCATION_DATA_SUPPORTED(x) ((x)[22] & 0x08) 1578 #define HCI_WRITE_LOCATION_DATA_SUPPORTED(x) ((x)[22] & 0x10) 1579 #define HCI_READ_LOCAL_AMP_INFO_SUPPORTED(x) ((x)[22] & 0x20) 1580 #define HCI_READ_LOCAL_AMP_ASSOC_SUPPORTED(x) ((x)[22] & 0x40) 1581 #define HCI_WRITE_REMOTE_AMP_ASSOC_SUPPORTED(x) ((x)[22] & 0x80) 1582 1583 #define HCI_READ_FLOW_CONTROL_MODE_SUPPORTED(x) ((x)[23] & 0x01) 1584 #define HCI_WRITE_FLOW_CONTROL_MODE_SUPPORTED(x) ((x)[23] & 0x02) 1585 #define HCI_READ_DATA_BLOCK_SIZE_SUPPORTED(x) ((x)[23] & 0x04) 1586 #define HCI_ENABLE_AMP_RCVR_REPORTS_SUPPORTED(x) ((x)[23] & 0x20) 1587 #define HCI_AMP_TEST_END_SUPPORTED(x) ((x)[23] & 0x40) 1588 #define HCI_AMP_TEST_SUPPORTED(x) ((x)[23] & 0x80) 1589 1590 #define HCI_READ_TRANSMIT_POWER_LEVEL_SUPPORTED(x) ((x)[24] & 0x01) 1591 #define HCI_READ_BE_FLUSH_TOUT_SUPPORTED(x) ((x)[24] & 0x04) 1592 #define HCI_WRITE_BE_FLUSH_TOUT_SUPPORTED(x) ((x)[24] & 0x08) 1593 #define HCI_SHORT_RANGE_MODE_SUPPORTED(x) ((x)[24] & 0x10) 1594 1595 #define HCI_ENH_SETUP_SYNCH_CONN_SUPPORTED(x) ((x)[29] & 0x08) 1596 #define HCI_ENH_ACCEPT_SYNCH_CONN_SUPPORTED(x) ((x)[29] & 0x10) 1597 #define HCI_READ_LOCAL_CODECS_SUPPORTED(x) ((x)[29] & 0x20) 1598 #define HCI_SET_MWS_CHANNEL_PARAMETERS_SUPPORTED(x) ((x)[29] & 0x40) 1599 #define HCI_SET_EXTERNAL_FRAME_CONFIGURATION_SUPPORTED(x) ((x)[29] & 0x80) 1600 1601 #define HCI_SET_MWS_SIGNALING_SUPPORTED(x) ((x)[30] & 0x01) 1602 #define HCI_SET_MWS_TRANSPORT_LAYER_SUPPORTED(x) ((x)[30] & 0x02) 1603 #define HCI_SET_MWS_SCAN_FREQUENCY_TABLE_SUPPORTED(x) ((x)[30] & 0x04) 1604 #define HCI_GET_MWS_TRANS_LAYER_CFG_SUPPORTED(x) ((x)[30] & 0x08) 1605 #define HCI_SET_MWS_PATTERN_CONFIGURATION_SUPPORTED(x) ((x)[30] & 0x10) 1606 #define HCI_SET_TRIG_CLK_CAP_SUPPORTED(x) ((x)[30] & 0x20) 1607 #define HCI_TRUNCATED_PAGE_SUPPORTED(x) ((x)[30] & 0x40) 1608 #define HCI_TRUNCATED_PAGE_CANCEL_SUPPORTED(x) ((x)[30] & 0x80) 1609 1610 #define HCI_SET_CONLESS_SLAVE_BRCST_SUPPORTED(x) ((x)[31] & 0x01) 1611 #define HCI_SET_CONLESS_SLAVE_BRCST_RECEIVE_SUPPORTED(x) ((x)[31] & 0x02) 1612 #define HCI_START_SYNC_TRAIN_SUPPORTED(x) ((x)[31] & 0x04) 1613 #define HCI_RECEIVE_SYNC_TRAIN_SUPPORTED(x) ((x)[31] & 0x08) 1614 #define HCI_SET_RESERVED_LT_ADDR_SUPPORTED(x) ((x)[31] & 0x10) 1615 #define HCI_DELETE_RESERVED_LT_ADDR_SUPPORTED(x) ((x)[31] & 0x20) 1616 #define HCI_SET_CONLESS_SLAVE_BRCST_DATA_SUPPORTED(x) ((x)[31] & 0x40) 1617 #define HCI_READ_SYNC_TRAIN_PARAM_SUPPORTED(x) ((x)[31] & 0x80) 1618 1619 #define HCI_WRITE_SYNC_TRAIN_PARAM_SUPPORTED(x) ((x)[32] & 0x01) 1620 #define HCI_REMOTE_OOB_EXTENDED_DATA_REQUEST_REPLY_SUPPORTED(x) ((x)[32] & 0x02) 1621 #define HCI_READ_SECURE_CONNS_SUPPORT_SUPPORTED(x) ((x)[32] & 0x04) 1622 #define HCI_WRITE_SECURE_CONNS_SUPPORT_SUPPORTED(x) ((x)[32] & 0x08) 1623 #define HCI_READ_AUTHENT_PAYLOAD_TOUT_SUPPORTED(x) ((x)[32] & 0x10) 1624 #define HCI_WRITE_AUTHENT_PAYLOAD_TOUT_SUPPORTED(x) ((x)[32] & 0x20) 1625 #define HCI_READ_LOCAL_OOB_EXTENDED_DATA_SUPPORTED(x) ((x)[32] & 0x40) 1626 #define HCI_WRITE_SECURE_CONNECTIONS_TEST_MODE_SUPPORTED(x) ((x)[32] & 0x80) 1627 1628 #define HCI_LE_RC_CONN_PARAM_UPD_RPY_SUPPORTED(x) ((x)[33] & 0x10) 1629 #define HCI_LE_RC_CONN_PARAM_UPD_NEG_RPY_SUPPORTED(x) ((x)[33] & 0x20) 1630 1631 #define HCI_LE_READ_PHY_SUPPORTED(x) ((x)[35] & 0x10) 1632 #define HCI_LE_SET_DEFAULT_PHY_SUPPORTED(x) ((x)[35] & 0x20) 1633 #define HCI_LE_SET_PHY_SUPPORTED(x) ((x)[35] & 0x40) 1634 #define HCI_LE_ENH_RX_TEST_SUPPORTED(x) ((x)[35] & 0x80) 1635 1636 #define HCI_LE_ENH_TX_TEST_SUPPORTED(x) ((x)[36] & 0x01) 1637 1638 #define HCI_LE_SET_PRIVACY_MODE_SUPPORTED(x) ((x)[39] & 0x04) 1639 1640 #endif 1641