1 /* 2 * ng_hci.h 3 */ 4 5 /*- 6 * SPDX-License-Identifier: BSD-2-Clause 7 * 8 * Copyright (c) 2001 Maksim Yevmenkin <m_evmenkin@yahoo.com> 9 * All rights reserved. 10 * 11 * Redistribution and use in source and binary forms, with or without 12 * modification, are permitted provided that the following conditions 13 * are met: 14 * 1. Redistributions of source code must retain the above copyright 15 * notice, this list of conditions and the following disclaimer. 16 * 2. Redistributions in binary form must reproduce the above copyright 17 * notice, this list of conditions and the following disclaimer in the 18 * documentation and/or other materials provided with the distribution. 19 * 20 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 23 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 30 * SUCH DAMAGE. 31 * 32 * $Id: ng_hci.h,v 1.2 2003/03/18 00:09:37 max Exp $ 33 */ 34 35 /* 36 * This file contains everything that application needs to know about 37 * Host Controller Interface (HCI). All information was obtained from 38 * Bluetooth Specification Book v1.1. 39 * 40 * This file can be included by both kernel and userland applications. 41 * 42 * NOTE: Here and after Bluetooth device is called a "unit". Bluetooth 43 * specification refers to both devices and units. They are the 44 * same thing (i think), so to be consistent word "unit" will be 45 * used. 46 */ 47 48 #ifndef _NETGRAPH_HCI_H_ 49 #define _NETGRAPH_HCI_H_ 50 51 /************************************************************************** 52 ************************************************************************** 53 ** Netgraph node hook name, type name and type cookie and commands 54 ************************************************************************** 55 **************************************************************************/ 56 57 /* Node type name and type cookie */ 58 #define NG_HCI_NODE_TYPE "hci" 59 #define NGM_HCI_COOKIE 1000774184 60 61 /* Netgraph node hook names */ 62 #define NG_HCI_HOOK_DRV "drv" /* Driver <-> HCI */ 63 #define NG_HCI_HOOK_ACL "acl" /* HCI <-> Upper */ 64 #define NG_HCI_HOOK_SCO "sco" /* HCI <-> Upper */ 65 #define NG_HCI_HOOK_RAW "raw" /* HCI <-> Upper */ 66 67 /************************************************************************** 68 ************************************************************************** 69 ** Common defines and types (HCI) 70 ************************************************************************** 71 **************************************************************************/ 72 73 /* All sizes are in bytes */ 74 #define NG_HCI_BDADDR_SIZE 6 /* unit address */ 75 #define NG_HCI_LAP_SIZE 3 /* unit LAP */ 76 #define NG_HCI_KEY_SIZE 16 /* link key */ 77 #define NG_HCI_PIN_SIZE 16 /* link PIN */ 78 #define NG_HCI_EVENT_MASK_SIZE 8 /* event mask */ 79 #define NG_HCI_LE_EVENT_MASK_SIZE 8 /* event mask */ 80 #define NG_HCI_CLASS_SIZE 3 /* unit class */ 81 #define NG_HCI_FEATURES_SIZE 8 /* LMP features */ 82 #define NG_HCI_UNIT_NAME_SIZE 248 /* unit name size */ 83 #define NG_HCI_COMMANDS_SIZE 64 /*Command list BMP size*/ 84 #define NG_HCI_EXTINQ_MAX 240 /**/ 85 /* HCI specification */ 86 #define NG_HCI_SPEC_V10 0x00 /* v1.0 */ 87 #define NG_HCI_SPEC_V11 0x01 /* v1.1 */ 88 /* 0x02 - 0xFF - reserved for future use */ 89 90 /* LMP features */ 91 /* ------------------- byte 0 --------------------*/ 92 #define NG_HCI_LMP_3SLOT 0x01 93 #define NG_HCI_LMP_5SLOT 0x02 94 #define NG_HCI_LMP_ENCRYPTION 0x04 95 #define NG_HCI_LMP_SLOT_OFFSET 0x08 96 #define NG_HCI_LMP_TIMING_ACCURACY 0x10 97 #define NG_HCI_LMP_SWITCH 0x20 98 #define NG_HCI_LMP_HOLD_MODE 0x40 99 #define NG_HCI_LMP_SNIFF_MODE 0x80 100 /* ------------------- byte 1 --------------------*/ 101 #define NG_HCI_LMP_PARK_MODE 0x01 102 #define NG_HCI_LMP_RSSI 0x02 103 #define NG_HCI_LMP_CHANNEL_QUALITY 0x04 104 #define NG_HCI_LMP_SCO_LINK 0x08 105 #define NG_HCI_LMP_HV2_PKT 0x10 106 #define NG_HCI_LMP_HV3_PKT 0x20 107 #define NG_HCI_LMP_ULAW_LOG 0x40 108 #define NG_HCI_LMP_ALAW_LOG 0x80 109 /* ------------------- byte 2 --------------------*/ 110 #define NG_HCI_LMP_CVSD 0x01 111 #define NG_HCI_LMP_PAGING_SCHEME 0x02 112 #define NG_HCI_LMP_POWER_CONTROL 0x04 113 #define NG_HCI_LMP_TRANSPARENT_SCO 0x08 114 #define NG_HCI_LMP_FLOW_CONTROL_LAG0 0x10 115 #define NG_HCI_LMP_FLOW_CONTROL_LAG1 0x20 116 #define NG_HCI_LMP_FLOW_CONTROL_LAG2 0x40 117 /* ------------------- byte 6 --------------------*/ 118 #define NG_HCI_LMP_SECURE_SIMPLE_PAIRING 0x08 119 120 /* Link types */ 121 #define NG_HCI_LINK_SCO 0x00 /* Voice */ 122 #define NG_HCI_LINK_ACL 0x01 /* Data */ 123 #define NG_HCI_LINK_LE_PUBLIC 0x02 /* LE Public*/ 124 #define NG_HCI_LINK_LE_RANDOM 0x03 /* LE Random*/ 125 /* 0x02 - 0xFF - reserved for future use */ 126 127 /* Packet types */ 128 /* 0x0001 - 0x0004 - reserved for future use */ 129 #define NG_HCI_PKT_DM1 0x0008 /* ACL link */ 130 #define NG_HCI_PKT_DH1 0x0010 /* ACL link */ 131 #define NG_HCI_PKT_HV1 0x0020 /* SCO link */ 132 #define NG_HCI_PKT_HV2 0x0040 /* SCO link */ 133 #define NG_HCI_PKT_HV3 0x0080 /* SCO link */ 134 /* 0x0100 - 0x0200 - reserved for future use */ 135 #define NG_HCI_PKT_DM3 0x0400 /* ACL link */ 136 #define NG_HCI_PKT_DH3 0x0800 /* ACL link */ 137 /* 0x1000 - 0x2000 - reserved for future use */ 138 #define NG_HCI_PKT_DM5 0x4000 /* ACL link */ 139 #define NG_HCI_PKT_DH5 0x8000 /* ACL link */ 140 141 /* 142 * Connection modes/Unit modes 143 * 144 * This is confusing. It means that one of the units change its mode 145 * for the specific connection. For example one connection was put on 146 * hold (but i could be wrong :) 147 */ 148 149 #define NG_HCI_UNIT_MODE_ACTIVE 0x00 150 #define NG_HCI_UNIT_MODE_HOLD 0x01 151 #define NG_HCI_UNIT_MODE_SNIFF 0x02 152 #define NG_HCI_UNIT_MODE_PARK 0x03 153 /* 0x04 - 0xFF - reserved for future use */ 154 155 /* Page scan modes */ 156 #define NG_HCI_MANDATORY_PAGE_SCAN_MODE 0x00 157 #define NG_HCI_OPTIONAL_PAGE_SCAN_MODE1 0x01 158 #define NG_HCI_OPTIONAL_PAGE_SCAN_MODE2 0x02 159 #define NG_HCI_OPTIONAL_PAGE_SCAN_MODE3 0x03 160 /* 0x04 - 0xFF - reserved for future use */ 161 162 /* Page scan repetition modes */ 163 #define NG_HCI_SCAN_REP_MODE0 0x00 164 #define NG_HCI_SCAN_REP_MODE1 0x01 165 #define NG_HCI_SCAN_REP_MODE2 0x02 166 /* 0x03 - 0xFF - reserved for future use */ 167 168 /* Page scan period modes */ 169 #define NG_HCI_PAGE_SCAN_PERIOD_MODE0 0x00 170 #define NG_HCI_PAGE_SCAN_PERIOD_MODE1 0x01 171 #define NG_HCI_PAGE_SCAN_PERIOD_MODE2 0x02 172 /* 0x03 - 0xFF - reserved for future use */ 173 174 /* Scan enable */ 175 #define NG_HCI_NO_SCAN_ENABLE 0x00 176 #define NG_HCI_INQUIRY_ENABLE_PAGE_DISABLE 0x01 177 #define NG_HCI_INQUIRY_DISABLE_PAGE_ENABLE 0x02 178 #define NG_HCI_INQUIRY_ENABLE_PAGE_ENABLE 0x03 179 /* 0x04 - 0xFF - reserved for future use */ 180 181 /* Hold mode activities */ 182 #define NG_HCI_HOLD_MODE_NO_CHANGE 0x00 183 #define NG_HCI_HOLD_MODE_SUSPEND_PAGE_SCAN 0x01 184 #define NG_HCI_HOLD_MODE_SUSPEND_INQUIRY_SCAN 0x02 185 #define NG_HCI_HOLD_MODE_SUSPEND_PERIOD_INQUIRY 0x04 186 /* 0x08 - 0x80 - reserved for future use */ 187 188 /* Connection roles */ 189 #define NG_HCI_ROLE_MASTER 0x00 190 #define NG_HCI_ROLE_SLAVE 0x01 191 /* 0x02 - 0xFF - reserved for future use */ 192 193 /* Key flags */ 194 #define NG_HCI_USE_SEMI_PERMANENT_LINK_KEYS 0x00 195 #define NG_HCI_USE_TEMPORARY_LINK_KEY 0x01 196 /* 0x02 - 0xFF - reserved for future use */ 197 198 /* Pin types */ 199 #define NG_HCI_PIN_TYPE_VARIABLE 0x00 200 #define NG_HCI_PIN_TYPE_FIXED 0x01 201 202 /* Link key types */ 203 #define NG_HCI_LINK_KEY_TYPE_COMBINATION_KEY 0x00 204 #define NG_HCI_LINK_KEY_TYPE_LOCAL_UNIT_KEY 0x01 205 #define NG_HCI_LINK_KEY_TYPE_REMOTE_UNIT_KEY 0x02 206 /* 0x03 - 0xFF - reserved for future use */ 207 208 /* Encryption modes */ 209 #define NG_HCI_ENCRYPTION_MODE_NONE 0x00 210 #define NG_HCI_ENCRYPTION_MODE_P2P 0x01 211 #define NG_HCI_ENCRYPTION_MODE_ALL 0x02 212 /* 0x03 - 0xFF - reserved for future use */ 213 214 /* Quality of service types */ 215 #define NG_HCI_SERVICE_TYPE_NO_TRAFFIC 0x00 216 #define NG_HCI_SERVICE_TYPE_BEST_EFFORT 0x01 217 #define NG_HCI_SERVICE_TYPE_GUARANTEED 0x02 218 /* 0x03 - 0xFF - reserved for future use */ 219 220 /* Link policy settings */ 221 #define NG_HCI_LINK_POLICY_DISABLE_ALL_LM_MODES 0x0000 222 #define NG_HCI_LINK_POLICY_ENABLE_ROLE_SWITCH 0x0001 /* Master/Slave switch */ 223 #define NG_HCI_LINK_POLICY_ENABLE_HOLD_MODE 0x0002 224 #define NG_HCI_LINK_POLICY_ENABLE_SNIFF_MODE 0x0004 225 #define NG_HCI_LINK_POLICY_ENABLE_PARK_MODE 0x0008 226 /* 0x0010 - 0x8000 - reserved for future use */ 227 228 /* Event masks */ 229 #define NG_HCI_EVMSK_DEFAULT 0x00001fffffffffff 230 #define NG_HCI_EVMSK_ALL 0x1fffffffffffffff 231 #define NG_HCI_EVMSK_NONE 0x0000000000000000 232 #define NG_HCI_EVMSK_INQUIRY_COMPL 0x0000000000000001 233 #define NG_HCI_EVMSK_INQUIRY_RESULT 0x0000000000000002 234 #define NG_HCI_EVMSK_CON_COMPL 0x0000000000000004 235 #define NG_HCI_EVMSK_CON_REQ 0x0000000000000008 236 #define NG_HCI_EVMSK_DISCON_COMPL 0x0000000000000010 237 #define NG_HCI_EVMSK_AUTH_COMPL 0x0000000000000020 238 #define NG_HCI_EVMSK_REMOTE_NAME_REQ_COMPL 0x0000000000000040 239 #define NG_HCI_EVMSK_ENCRYPTION_CHANGE 0x0000000000000080 240 #define NG_HCI_EVMSK_CHANGE_CON_LINK_KEY_COMPL 0x0000000000000100 241 #define NG_HCI_EVMSK_MASTER_LINK_KEY_COMPL 0x0000000000000200 242 #define NG_HCI_EVMSK_READ_REMOTE_FEATURES_COMPL 0x0000000000000400 243 #define NG_HCI_EVMSK_READ_REMOTE_VER_INFO_COMPL 0x0000000000000800 244 #define NG_HCI_EVMSK_QOS_SETUP_COMPL 0x0000000000001000 245 #define NG_HCI_EVMSK_COMMAND_COMPL 0x0000000000002000 246 #define NG_HCI_EVMSK_COMMAND_STATUS 0x0000000000004000 247 #define NG_HCI_EVMSK_HARDWARE_ERROR 0x0000000000008000 248 #define NG_HCI_EVMSK_FLUSH_OCCUR 0x0000000000010000 249 #define NG_HCI_EVMSK_ROLE_CHANGE 0x0000000000020000 250 #define NG_HCI_EVMSK_NUM_COMPL_PKTS 0x0000000000040000 251 #define NG_HCI_EVMSK_MODE_CHANGE 0x0000000000080000 252 #define NG_HCI_EVMSK_RETURN_LINK_KEYS 0x0000000000100000 253 #define NG_HCI_EVMSK_PIN_CODE_REQ 0x0000000000200000 254 #define NG_HCI_EVMSK_LINK_KEY_REQ 0x0000000000400000 255 #define NG_HCI_EVMSK_LINK_KEY_NOTIFICATION 0x0000000000800000 256 #define NG_HCI_EVMSK_LOOPBACK_COMMAND 0x0000000001000000 257 #define NG_HCI_EVMSK_DATA_BUFFER_OVERFLOW 0x0000000002000000 258 #define NG_HCI_EVMSK_MAX_SLOT_CHANGE 0x0000000004000000 259 #define NG_HCI_EVMSK_READ_CLOCK_OFFSET_COMLETE 0x0000000008000000 260 #define NG_HCI_EVMSK_CON_PKT_TYPE_CHANGED 0x0000000010000000 261 #define NG_HCI_EVMSK_QOS_VIOLATION 0x0000000020000000 262 #define NG_HCI_EVMSK_PAGE_SCAN_MODE_CHANGE 0x0000000040000000 263 #define NG_HCI_EVMSK_PAGE_SCAN_REP_MODE_CHANGE 0x0000000080000000 264 #define NG_HCI_EVMSK_FLOW_SPEC_COMPL 0x0000000100000000 265 #define NG_HCI_EVMSK_INQUIRY_RESULT_W_RSSI 0x0000000200000000 266 #define NG_HCI_EVMSK_READ_REM_EXT_FEAT_COMPL 0x0000000400000000 267 268 /* 0x0000000800000000 - 0x0000080000000000 - not in use */ 269 270 #define NG_HCI_EVMSK_SYNC_CONN_COMPL 0x0000100000000000 271 #define NG_HCI_EVMSK_SYNC_CONN_CHANGED 0x0000200000000000 272 #define NG_HCI_EVMSK_SNIFF_SUBRATING 0x0000400000000000 273 #define NG_HCI_EVMSK_EXT_INQUIRY_RESULT 0x0000800000000000 274 #define NG_HCI_EVMSK_ENC_KEY_REFRESH_COMPL 0x0001000000000000 275 #define NG_HCI_EVMSK_IO_CAPABILITY_REQ 0x0002000000000000 276 #define NG_HCI_EVMSK_IO_CAPABILITY_RESP 0x0004000000000000 277 #define NG_HCI_EVMSK_USER_CONFIRMATION_REQ 0x0008000000000000 278 #define NG_HCI_EVMSK_USER_PASSKEY_REQ 0x0010000000000000 279 #define NG_HCI_EVMSK_REM_OOB_DATA_REQ 0x0020000000000000 280 #define NG_HCI_EVMSK_SIMPLE_PAIRING_COMPL 0x0040000000000000 281 #define NG_HCI_EVMSK_LINK_SUPERV_TO_CHANGED 0x0080000000000000 282 #define NG_HCI_EVMSK_ENH_FLUSH_COMPL 0x0100000000000000 283 #define NG_HCI_EVMSK_USER_PASSKEY_NOTIFICATION 0x0200000000000000 284 #define NG_HCI_EVMSK_KEYPRESS_NOTIFICATION 0x0400000000000000 285 #define NG_HCI_EVMSK_REM_HOST_SUPP_FEAT_NOTIFI 0x0800000000000000 286 #define NG_HCI_EVMSK_LE_META 0x1000000000000000 287 /* 0x1000000100000000 - 0x8000000000000000 - reserved for future use */ 288 289 /* LE events masks*/ 290 #define NG_HCI_LEEVMSK_ALL 0x000000003fffffff 291 #define NG_HCI_LEEVMSK_NONE 0x0000000000000000 292 #define NG_HCI_LEEVMSK_DEFAULT 0x000000000000001f 293 #define NG_HCI_LEEVMSK_CONN_COMPLETE 0x0000000000000001 294 #define NG_HCI_LEEVMSK_ADV_REP 0x0000000000000002 295 #define NG_HCI_LEEVMSK_CONN_UPDATE 0x0000000000000004 296 #define NG_HCI_LEEVMSK_READ_REM_FEAT_REQ 0x0000000000000008 297 #define NG_HCI_LEEVMSK_LONG_TERM_KEY_REQ 0x0000000000000010 298 #define NG_HCI_LEEVMSK_REM_CONN_PARAM_REQ 0x0000000000000020 299 #define NG_HCI_LEEVMSK_DATA_LENGTH_CHG 0x0000000000000040 300 #define NG_HCI_LEEVMSK_RD_LOC_P256_PK_COMPL 0x0000000000000080 301 #define NG_HCI_LEEVMSK_GEN_DHKEY_COMPL 0x0000000000000100 302 #define NG_HCI_LEEVMSK_ENH_CONN_COMPL 0x0000000000000200 303 #define NG_HCI_LEEVMSK_DIR_ADV_REP 0x0000000000000400 304 #define NG_HCI_LEEVMSK_PHY_UPD_COMPL 0x0000000000000800 305 #define NG_HCI_LEEVMSK_EXT_ADV_REP 0x0000000000001000 306 #define NG_HCI_LEEVMSK_PER_ADV_SYNC_EST 0x0000000000002000 307 #define NG_HCI_LEEVMSK_PER_ADV_REP 0x0000000000004000 308 #define NG_HCI_LEEVMSK_PER_ADV_SYNC_LOST 0x0000000000008000 309 #define NG_HCI_LEEVMSK_SCAN_TIMEOUT 0x0000000000010000 310 #define NG_HCI_LEEVMSK_ADV_SET_TERM 0x0000000000020000 311 #define NG_HCI_LEEVMSK_SCAN_REQ_RCVD 0x0000000000040000 312 #define NG_HCI_LEEVMSK_CHAN_SEL_ALGO 0x0000000000080000 313 #define NG_HCI_LEEVMSK_CONNLESS_IQ_REP 0x0000000000010000 314 #define NG_HCI_LEEVMSK_CONN_IQ_REP 0x0000000000020000 315 #define NG_HCI_LEEVMSK_CTE_REQ_FAILED 0x0000000000040000 316 #define NG_HCI_LEEVMSK_PER_ADV_SYN_TRF_RCVD 0x0000000000080000 317 #define NG_HCI_LEEVMSK_CIS_EST 0x0000000000100000 318 #define NG_HCI_LEEVMSK_CIS_REQ 0x0000000000200000 319 #define NG_HCI_LEEVMSK_CREATE_BIG_COMPL 0x0000000000400000 320 #define NG_HCI_LEEVMSK_TERM_BIG_COMPL 0x0000000000800000 321 #define NG_HCI_LEEVMSK_BIG_SYNC_EST 0x0000000001000000 322 #define NG_HCI_LEEVMSK_BIG_SYNC_LOST 0x0000000002000000 323 #define NG_HCI_LEEVMSK_REQ_PEER_SCA_COMPL 0x0000000004000000 324 #define NG_HCI_LEEVMSK_PATH_LOSS_THRESHOLD 0x0000000008000000 325 #define NG_HCI_LEEVMSK_TX_PWR_REP 0x0000000010000000 326 #define NG_HCI_LEEVMSK_BIGINFO_ADV_REP 0x0000000020000000 327 /* 0x0000000040000000 - 0x8000000000000000 - reserved for future use */ 328 329 /* Filter types */ 330 #define NG_HCI_FILTER_TYPE_NONE 0x00 331 #define NG_HCI_FILTER_TYPE_INQUIRY_RESULT 0x01 332 #define NG_HCI_FILTER_TYPE_CON_SETUP 0x02 333 /* 0x03 - 0xFF - reserved for future use */ 334 335 /* Filter condition types for NG_HCI_FILTER_TYPE_INQUIRY_RESULT */ 336 #define NG_HCI_FILTER_COND_INQUIRY_NEW_UNIT 0x00 337 #define NG_HCI_FILTER_COND_INQUIRY_UNIT_CLASS 0x01 338 #define NG_HCI_FILTER_COND_INQUIRY_BDADDR 0x02 339 /* 0x03 - 0xFF - reserved for future use */ 340 341 /* Filter condition types for NG_HCI_FILTER_TYPE_CON_SETUP */ 342 #define NG_HCI_FILTER_COND_CON_ANY_UNIT 0x00 343 #define NG_HCI_FILTER_COND_CON_UNIT_CLASS 0x01 344 #define NG_HCI_FILTER_COND_CON_BDADDR 0x02 345 /* 0x03 - 0xFF - reserved for future use */ 346 347 /* Xmit level types */ 348 #define NG_HCI_XMIT_LEVEL_CURRENT 0x00 349 #define NG_HCI_XMIT_LEVEL_MAXIMUM 0x01 350 /* 0x02 - 0xFF - reserved for future use */ 351 352 /* Host to Host Controller flow control */ 353 #define NG_HCI_H2HC_FLOW_CONTROL_NONE 0x00 354 #define NG_HCI_H2HC_FLOW_CONTROL_ACL 0x01 355 #define NG_HCI_H2HC_FLOW_CONTROL_SCO 0x02 356 #define NG_HCI_H2HC_FLOW_CONTROL_BOTH 0x03 /* ACL and SCO */ 357 /* 0x04 - 0xFF - reserved future use */ 358 359 /* Country codes */ 360 #define NG_HCI_COUNTRY_CODE_NAM_EUR_JP 0x00 361 #define NG_HCI_COUNTRY_CODE_FRANCE 0x01 362 /* 0x02 - 0xFF - reserved future use */ 363 364 /* Loopback modes */ 365 #define NG_HCI_LOOPBACK_NONE 0x00 366 #define NG_HCI_LOOPBACK_LOCAL 0x01 367 #define NG_HCI_LOOPBACK_REMOTE 0x02 368 /* 0x03 - 0xFF - reserved future use */ 369 370 /************************************************************************** 371 ************************************************************************** 372 ** Link level defines, headers and types 373 ************************************************************************** 374 **************************************************************************/ 375 376 /* 377 * Macro(s) to combine OpCode and extract OGF (OpCode Group Field) 378 * and OCF (OpCode Command Field) from OpCode. 379 */ 380 381 #define NG_HCI_OPCODE(gf,cf) ((((gf) & 0x3f) << 10) | ((cf) & 0x3ff)) 382 #define NG_HCI_OCF(op) ((op) & 0x3ff) 383 #define NG_HCI_OGF(op) (((op) >> 10) & 0x3f) 384 385 /* 386 * Marco(s) to extract/combine connection handle, BC (Broadcast) and 387 * PB (Packet boundary) flags. 388 */ 389 390 #define NG_HCI_CON_HANDLE(h) ((h) & 0x0fff) 391 #define NG_HCI_PB_FLAG(h) (((h) & 0x3000) >> 12) 392 #define NG_HCI_BC_FLAG(h) (((h) & 0xc000) >> 14) 393 #define NG_HCI_MK_CON_HANDLE(h, pb, bc) \ 394 (((h) & 0x0fff) | (((pb) & 3) << 12) | (((bc) & 3) << 14)) 395 396 /* PB flag values */ 397 #define NG_HCI_LE_PACKET_START 0x0 398 #define NG_HCI_PACKET_FRAGMENT 0x1 399 #define NG_HCI_PACKET_START 0x2 400 /* 11 for AMP packet, not supported */ 401 402 /* BC flag values */ 403 #define NG_HCI_POINT2POINT 0x0 /* only Host controller to Host */ 404 #define NG_HCI_BROADCAST_ACTIVE 0x1 /* both directions */ 405 #define NG_HCI_BROADCAST_PICONET 0x2 /* both directions */ 406 /* 11 - reserved for future use */ 407 408 /* HCI command packet header */ 409 #define NG_HCI_CMD_PKT 0x01 410 #define NG_HCI_CMD_PKT_SIZE 0xff /* without header */ 411 typedef struct { 412 u_int8_t type; /* MUST be 0x1 */ 413 u_int16_t opcode; /* OpCode */ 414 u_int8_t length; /* parameter(s) length in bytes */ 415 } __attribute__ ((packed)) ng_hci_cmd_pkt_t; 416 417 /* ACL data packet header */ 418 #define NG_HCI_ACL_DATA_PKT 0x02 419 #define NG_HCI_ACL_PKT_SIZE 0xffff /* without header */ 420 typedef struct { 421 u_int8_t type; /* MUST be 0x2 */ 422 u_int16_t con_handle; /* connection handle + PB + BC flags */ 423 u_int16_t length; /* payload length in bytes */ 424 } __attribute__ ((packed)) ng_hci_acldata_pkt_t; 425 426 /* SCO data packet header */ 427 #define NG_HCI_SCO_DATA_PKT 0x03 428 #define NG_HCI_SCO_PKT_SIZE 0xff /* without header */ 429 typedef struct { 430 u_int8_t type; /* MUST be 0x3 */ 431 u_int16_t con_handle; /* connection handle + reserved bits */ 432 u_int8_t length; /* payload length in bytes */ 433 } __attribute__ ((packed)) ng_hci_scodata_pkt_t; 434 435 /* HCI event packet header */ 436 #define NG_HCI_EVENT_PKT 0x04 437 #define NG_HCI_EVENT_PKT_SIZE 0xff /* without header */ 438 typedef struct { 439 u_int8_t type; /* MUST be 0x4 */ 440 u_int8_t event; /* event */ 441 u_int8_t length; /* parameter(s) length in bytes */ 442 } __attribute__ ((packed)) ng_hci_event_pkt_t; 443 444 /* Bluetooth unit address */ 445 typedef struct { 446 u_int8_t b[NG_HCI_BDADDR_SIZE]; 447 } __attribute__ ((packed)) bdaddr_t; 448 typedef bdaddr_t * bdaddr_p; 449 450 /* Any BD_ADDR. Note: This is actually 7 bytes (count '\0' terminator) */ 451 #define NG_HCI_BDADDR_ANY ((bdaddr_p) "\000\000\000\000\000\000") 452 453 /* HCI status return parameter */ 454 typedef struct { 455 u_int8_t status; /* 0x00 - success */ 456 } __attribute__ ((packed)) ng_hci_status_rp; 457 458 /************************************************************************** 459 ************************************************************************** 460 ** Upper layer protocol interface. LP_xxx event parameters 461 ************************************************************************** 462 **************************************************************************/ 463 464 /* Connection Request Event */ 465 #define NGM_HCI_LP_CON_REQ 1 /* Upper -> HCI */ 466 typedef struct { 467 u_int16_t link_type; /* type of connection */ 468 bdaddr_t bdaddr; /* remote unit address */ 469 } ng_hci_lp_con_req_ep; 470 471 /* 472 * XXX XXX XXX 473 * 474 * NOTE: This request is not defined by Bluetooth specification, 475 * but i find it useful :) 476 */ 477 #define NGM_HCI_LP_DISCON_REQ 2 /* Upper -> HCI */ 478 typedef struct { 479 u_int16_t con_handle; /* connection handle */ 480 u_int16_t reason; /* reason to disconnect (only low byte) */ 481 } ng_hci_lp_discon_req_ep; 482 483 /* Connection Confirmation Event */ 484 #define NGM_HCI_LP_CON_CFM 3 /* HCI -> Upper */ 485 typedef struct { 486 u_int8_t status; /* 0x00 - success */ 487 u_int8_t link_type; /* link type */ 488 u_int16_t con_handle; /* con_handle */ 489 bdaddr_t bdaddr; /* remote unit address */ 490 } ng_hci_lp_con_cfm_ep; 491 492 /* Connection Indication Event */ 493 #define NGM_HCI_LP_CON_IND 4 /* HCI -> Upper */ 494 typedef struct { 495 u_int8_t link_type; /* link type */ 496 u_int8_t uclass[NG_HCI_CLASS_SIZE]; /* unit class */ 497 bdaddr_t bdaddr; /* remote unit address */ 498 } ng_hci_lp_con_ind_ep; 499 500 /* Connection Response Event */ 501 #define NGM_HCI_LP_CON_RSP 5 /* Upper -> HCI */ 502 typedef struct { 503 u_int8_t status; /* 0x00 - accept connection */ 504 u_int8_t link_type; /* link type */ 505 bdaddr_t bdaddr; /* remote unit address */ 506 } ng_hci_lp_con_rsp_ep; 507 508 /* Disconnection Indication Event */ 509 #define NGM_HCI_LP_DISCON_IND 6 /* HCI -> Upper */ 510 typedef struct { 511 u_int8_t reason; /* reason to disconnect (only low byte) */ 512 u_int8_t link_type; /* link type */ 513 u_int16_t con_handle; /* connection handle */ 514 } ng_hci_lp_discon_ind_ep; 515 516 /* QoS Setup Request Event */ 517 #define NGM_HCI_LP_QOS_REQ 7 /* Upper -> HCI */ 518 typedef struct { 519 u_int16_t con_handle; /* connection handle */ 520 u_int8_t flags; /* reserved */ 521 u_int8_t service_type; /* service type */ 522 u_int32_t token_rate; /* bytes/sec */ 523 u_int32_t peak_bandwidth; /* bytes/sec */ 524 u_int32_t latency; /* msec */ 525 u_int32_t delay_variation; /* msec */ 526 } ng_hci_lp_qos_req_ep; 527 528 /* QoS Conformition Event */ 529 #define NGM_HCI_LP_QOS_CFM 8 /* HCI -> Upper */ 530 typedef struct { 531 u_int16_t status; /* 0x00 - success (only low byte) */ 532 u_int16_t con_handle; /* connection handle */ 533 } ng_hci_lp_qos_cfm_ep; 534 535 /* QoS Violation Indication Event */ 536 #define NGM_HCI_LP_QOS_IND 9 /* HCI -> Upper */ 537 typedef struct { 538 u_int16_t con_handle; /* connection handle */ 539 } ng_hci_lp_qos_ind_ep; 540 /*Encryption Change event*/ 541 #define NGM_HCI_LP_ENC_CHG 10 /* HCI->Upper*/ 542 typedef struct { 543 uint16_t con_handle; 544 uint8_t status; 545 uint8_t link_type; 546 }ng_hci_lp_enc_change_ep; 547 /************************************************************************** 548 ************************************************************************** 549 ** HCI node command/event parameters 550 ************************************************************************** 551 **************************************************************************/ 552 553 /* Debug levels */ 554 #define NG_HCI_ALERT_LEVEL 1 555 #define NG_HCI_ERR_LEVEL 2 556 #define NG_HCI_WARN_LEVEL 3 557 #define NG_HCI_INFO_LEVEL 4 558 559 /* Unit states */ 560 #define NG_HCI_UNIT_CONNECTED (1 << 0) 561 #define NG_HCI_UNIT_INITED (1 << 1) 562 #define NG_HCI_UNIT_READY (NG_HCI_UNIT_CONNECTED|NG_HCI_UNIT_INITED) 563 #define NG_HCI_UNIT_COMMAND_PENDING (1 << 2) 564 565 /* Connection state */ 566 #define NG_HCI_CON_CLOSED 0 /* connection closed */ 567 #define NG_HCI_CON_W4_LP_CON_RSP 1 /* wait for LP_ConnectRsp */ 568 #define NG_HCI_CON_W4_CONN_COMPLETE 2 /* wait for Connection_Complete evt */ 569 #define NG_HCI_CON_OPEN 3 /* connection open */ 570 571 /* Get HCI node (unit) state (see states above) */ 572 #define NGM_HCI_NODE_GET_STATE 100 /* HCI -> User */ 573 typedef u_int16_t ng_hci_node_state_ep; 574 575 /* Turn on "inited" bit */ 576 #define NGM_HCI_NODE_INIT 101 /* User -> HCI */ 577 /* No parameters */ 578 579 /* Get/Set node debug level (see debug levels above) */ 580 #define NGM_HCI_NODE_GET_DEBUG 102 /* HCI -> User */ 581 #define NGM_HCI_NODE_SET_DEBUG 103 /* User -> HCI */ 582 typedef u_int16_t ng_hci_node_debug_ep; 583 584 /* Get node buffer info */ 585 #define NGM_HCI_NODE_GET_BUFFER 104 /* HCI -> User */ 586 typedef struct { 587 u_int8_t cmd_free; /* number of free command packets */ 588 u_int8_t sco_size; /* max. size of SCO packet */ 589 u_int16_t sco_pkts; /* number of SCO packets */ 590 u_int16_t sco_free; /* number of free SCO packets */ 591 u_int16_t acl_size; /* max. size of ACL packet */ 592 u_int16_t acl_pkts; /* number of ACL packets */ 593 u_int16_t acl_free; /* number of free ACL packets */ 594 } ng_hci_node_buffer_ep; 595 596 /* Get BDADDR */ 597 #define NGM_HCI_NODE_GET_BDADDR 105 /* HCI -> User */ 598 /* bdaddr_t -- BDADDR */ 599 600 /* Get features */ 601 #define NGM_HCI_NODE_GET_FEATURES 106 /* HCI -> User */ 602 /* features[NG_HCI_FEATURES_SIZE] -- features */ 603 604 #define NGM_HCI_NODE_GET_STAT 107 /* HCI -> User */ 605 typedef struct { 606 u_int32_t cmd_sent; /* number of HCI commands sent */ 607 u_int32_t evnt_recv; /* number of HCI events received */ 608 u_int32_t acl_recv; /* number of ACL packets received */ 609 u_int32_t acl_sent; /* number of ACL packets sent */ 610 u_int32_t sco_recv; /* number of SCO packets received */ 611 u_int32_t sco_sent; /* number of SCO packets sent */ 612 u_int32_t bytes_recv; /* total number of bytes received */ 613 u_int32_t bytes_sent; /* total number of bytes sent */ 614 } ng_hci_node_stat_ep; 615 616 #define NGM_HCI_NODE_RESET_STAT 108 /* User -> HCI */ 617 /* No parameters */ 618 619 #define NGM_HCI_NODE_FLUSH_NEIGHBOR_CACHE 109 /* User -> HCI */ 620 621 #define NGM_HCI_NODE_GET_NEIGHBOR_CACHE 110 /* HCI -> User */ 622 typedef struct { 623 u_int32_t num_entries; /* number of entries */ 624 } ng_hci_node_get_neighbor_cache_ep; 625 626 typedef struct { 627 u_int16_t page_scan_rep_mode; /* page rep scan mode */ 628 u_int16_t page_scan_mode; /* page scan mode */ 629 u_int16_t clock_offset; /* clock offset */ 630 bdaddr_t bdaddr; /* bdaddr */ 631 u_int8_t features[NG_HCI_FEATURES_SIZE]; /* features */ 632 uint8_t addrtype; 633 uint8_t extinq_size; /* MAX 240*/ 634 uint8_t extinq_data[NG_HCI_EXTINQ_MAX]; 635 } ng_hci_node_neighbor_cache_entry_ep; 636 637 #define NG_HCI_MAX_NEIGHBOR_NUM \ 638 ((0xffff - sizeof(ng_hci_node_get_neighbor_cache_ep))/sizeof(ng_hci_node_neighbor_cache_entry_ep)) 639 640 #define NGM_HCI_NODE_GET_CON_LIST 111 /* HCI -> User */ 641 typedef struct { 642 u_int32_t num_connections; /* number of connections */ 643 } ng_hci_node_con_list_ep; 644 645 typedef struct { 646 u_int8_t link_type; /* ACL or SCO */ 647 u_int8_t encryption_mode; /* none, p2p, ... */ 648 u_int8_t mode; /* ACTIVE, HOLD ... */ 649 u_int8_t role; /* MASTER/SLAVE */ 650 u_int16_t state; /* connection state */ 651 u_int16_t reserved; /* place holder */ 652 u_int16_t pending; /* number of pending packets */ 653 u_int16_t queue_len; /* number of packets in queue */ 654 u_int16_t con_handle; /* connection handle */ 655 bdaddr_t bdaddr; /* remote bdaddr */ 656 } ng_hci_node_con_ep; 657 658 #define NG_HCI_MAX_CON_NUM \ 659 ((0xffff - sizeof(ng_hci_node_con_list_ep))/sizeof(ng_hci_node_con_ep)) 660 661 #define NGM_HCI_NODE_UP 112 /* HCI -> Upper */ 662 typedef struct { 663 u_int16_t pkt_size; /* max. ACL/SCO packet size (w/out header) */ 664 u_int16_t num_pkts; /* ACL/SCO packet queue size */ 665 u_int16_t reserved; /* place holder */ 666 bdaddr_t bdaddr; /* bdaddr */ 667 } ng_hci_node_up_ep; 668 669 #define NGM_HCI_SYNC_CON_QUEUE 113 /* HCI -> Upper */ 670 typedef struct { 671 u_int16_t con_handle; /* connection handle */ 672 u_int16_t completed; /* number of completed packets */ 673 } ng_hci_sync_con_queue_ep; 674 675 #define NGM_HCI_NODE_GET_LINK_POLICY_SETTINGS_MASK 114 /* HCI -> User */ 676 #define NGM_HCI_NODE_SET_LINK_POLICY_SETTINGS_MASK 115 /* User -> HCI */ 677 typedef u_int16_t ng_hci_node_link_policy_mask_ep; 678 679 #define NGM_HCI_NODE_GET_PACKET_MASK 116 /* HCI -> User */ 680 #define NGM_HCI_NODE_SET_PACKET_MASK 117 /* User -> HCI */ 681 typedef u_int16_t ng_hci_node_packet_mask_ep; 682 683 #define NGM_HCI_NODE_GET_ROLE_SWITCH 118 /* HCI -> User */ 684 #define NGM_HCI_NODE_SET_ROLE_SWITCH 119 /* User -> HCI */ 685 typedef u_int16_t ng_hci_node_role_switch_ep; 686 687 #define NGM_HCI_NODE_LIST_NAMES 200 /* HCI -> User */ 688 689 /************************************************************************** 690 ************************************************************************** 691 ** Link control commands and return parameters 692 ************************************************************************** 693 **************************************************************************/ 694 695 #define NG_HCI_OGF_LINK_CONTROL 0x01 /* OpCode Group Field */ 696 697 #define NG_HCI_OCF_INQUIRY 0x0001 698 typedef struct { 699 u_int8_t lap[NG_HCI_LAP_SIZE]; /* LAP */ 700 u_int8_t inquiry_length; /* (N x 1.28) sec */ 701 u_int8_t num_responses; /* Max. # of responses before halted */ 702 } __attribute__ ((packed)) ng_hci_inquiry_cp; 703 /* No return parameter(s) */ 704 705 #define NG_HCI_OCF_INQUIRY_CANCEL 0x0002 706 /* No command parameter(s) */ 707 typedef ng_hci_status_rp ng_hci_inquiry_cancel_rp; 708 709 #define NG_HCI_OCF_PERIODIC_INQUIRY 0x0003 710 typedef struct { 711 u_int16_t max_period_length; /* Max. and min. amount of time */ 712 u_int16_t min_period_length; /* between consecutive inquiries */ 713 u_int8_t lap[NG_HCI_LAP_SIZE]; /* LAP */ 714 u_int8_t inquiry_length; /* (inquiry_length * 1.28) sec */ 715 u_int8_t num_responses; /* Max. # of responses */ 716 } __attribute__ ((packed)) ng_hci_periodic_inquiry_cp; 717 718 typedef ng_hci_status_rp ng_hci_periodic_inquiry_rp; 719 720 #define NG_HCI_OCF_EXIT_PERIODIC_INQUIRY 0x0004 721 /* No command parameter(s) */ 722 typedef ng_hci_status_rp ng_hci_exit_periodic_inquiry_rp; 723 724 #define NG_HCI_OCF_CREATE_CON 0x0005 725 typedef struct { 726 bdaddr_t bdaddr; /* destination address */ 727 u_int16_t pkt_type; /* packet type */ 728 u_int8_t page_scan_rep_mode; /* page scan repetition mode */ 729 u_int8_t page_scan_mode; /* page scan mode */ 730 u_int16_t clock_offset; /* clock offset */ 731 u_int8_t accept_role_switch; /* accept role switch? 0x00 - no */ 732 } __attribute__ ((packed)) ng_hci_create_con_cp; 733 /* No return parameter(s) */ 734 735 #define NG_HCI_OCF_DISCON 0x0006 736 typedef struct { 737 u_int16_t con_handle; /* connection handle */ 738 u_int8_t reason; /* reason to disconnect */ 739 } __attribute__ ((packed)) ng_hci_discon_cp; 740 /* No return parameter(s) */ 741 742 #define NG_HCI_OCF_ADD_SCO_CON 0x0007 743 typedef struct { 744 u_int16_t con_handle; /* connection handle */ 745 u_int16_t pkt_type; /* packet type */ 746 } __attribute__ ((packed)) ng_hci_add_sco_con_cp; 747 /* No return parameter(s) */ 748 749 #define NG_HCI_OCF_ACCEPT_CON 0x0009 750 typedef struct { 751 bdaddr_t bdaddr; /* address of unit to be connected */ 752 u_int8_t role; /* connection role */ 753 } __attribute__ ((packed)) ng_hci_accept_con_cp; 754 /* No return parameter(s) */ 755 756 #define NG_HCI_OCF_REJECT_CON 0x000a 757 typedef struct { 758 bdaddr_t bdaddr; /* remote address */ 759 u_int8_t reason; /* reason to reject */ 760 } __attribute__ ((packed)) ng_hci_reject_con_cp; 761 /* No return parameter(s) */ 762 763 #define NG_HCI_OCF_LINK_KEY_REP 0x000b 764 typedef struct { 765 bdaddr_t bdaddr; /* remote address */ 766 u_int8_t key[NG_HCI_KEY_SIZE]; /* key */ 767 } __attribute__ ((packed)) ng_hci_link_key_rep_cp; 768 769 typedef struct { 770 u_int8_t status; /* 0x00 - success */ 771 bdaddr_t bdaddr; /* unit address */ 772 } __attribute__ ((packed)) ng_hci_link_key_rep_rp; 773 774 #define NG_HCI_OCF_LINK_KEY_NEG_REP 0x000c 775 typedef struct { 776 bdaddr_t bdaddr; /* remote address */ 777 } __attribute__ ((packed)) ng_hci_link_key_neg_rep_cp; 778 779 typedef struct { 780 u_int8_t status; /* 0x00 - success */ 781 bdaddr_t bdaddr; /* unit address */ 782 } __attribute__ ((packed)) ng_hci_link_key_neg_rep_rp; 783 784 #define NG_HCI_OCF_PIN_CODE_REP 0x000d 785 typedef struct { 786 bdaddr_t bdaddr; /* remote address */ 787 u_int8_t pin_size; /* pin code length (in bytes) */ 788 u_int8_t pin[NG_HCI_PIN_SIZE]; /* pin code */ 789 } __attribute__ ((packed)) ng_hci_pin_code_rep_cp; 790 791 typedef struct { 792 u_int8_t status; /* 0x00 - success */ 793 bdaddr_t bdaddr; /* unit address */ 794 } __attribute__ ((packed)) ng_hci_pin_code_rep_rp; 795 796 #define NG_HCI_OCF_PIN_CODE_NEG_REP 0x000e 797 typedef struct { 798 bdaddr_t bdaddr; /* remote address */ 799 } __attribute__ ((packed)) ng_hci_pin_code_neg_rep_cp; 800 801 typedef struct { 802 u_int8_t status; /* 0x00 - success */ 803 bdaddr_t bdaddr; /* unit address */ 804 } __attribute__ ((packed)) ng_hci_pin_code_neg_rep_rp; 805 806 #define NG_HCI_OCF_CHANGE_CON_PKT_TYPE 0x000f 807 typedef struct { 808 u_int16_t con_handle; /* connection handle */ 809 u_int16_t pkt_type; /* packet type */ 810 } __attribute__ ((packed)) ng_hci_change_con_pkt_type_cp; 811 /* No return parameter(s) */ 812 813 #define NG_HCI_OCF_AUTH_REQ 0x0011 814 typedef struct { 815 u_int16_t con_handle; /* connection handle */ 816 } __attribute__ ((packed)) ng_hci_auth_req_cp; 817 /* No return parameter(s) */ 818 819 #define NG_HCI_OCF_SET_CON_ENCRYPTION 0x0013 820 typedef struct { 821 u_int16_t con_handle; /* connection handle */ 822 u_int8_t encryption_enable; /* 0x00 - disable, 0x01 - enable */ 823 } __attribute__ ((packed)) ng_hci_set_con_encryption_cp; 824 /* No return parameter(s) */ 825 826 #define NG_HCI_OCF_CHANGE_CON_LINK_KEY 0x0015 827 typedef struct { 828 u_int16_t con_handle; /* connection handle */ 829 } __attribute__ ((packed)) ng_hci_change_con_link_key_cp; 830 /* No return parameter(s) */ 831 832 #define NG_HCI_OCF_MASTER_LINK_KEY 0x0017 833 typedef struct { 834 u_int8_t key_flag; /* key flag */ 835 } __attribute__ ((packed)) ng_hci_master_link_key_cp; 836 /* No return parameter(s) */ 837 838 #define NG_HCI_OCF_REMOTE_NAME_REQ 0x0019 839 typedef struct { 840 bdaddr_t bdaddr; /* remote address */ 841 u_int8_t page_scan_rep_mode; /* page scan repetition mode */ 842 u_int8_t page_scan_mode; /* page scan mode */ 843 u_int16_t clock_offset; /* clock offset */ 844 } __attribute__ ((packed)) ng_hci_remote_name_req_cp; 845 /* No return parameter(s) */ 846 847 #define NG_HCI_OCF_READ_REMOTE_FEATURES 0x001b 848 typedef struct { 849 u_int16_t con_handle; /* connection handle */ 850 } __attribute__ ((packed)) ng_hci_read_remote_features_cp; 851 /* No return parameter(s) */ 852 853 #define NG_HCI_OCF_READ_REMOTE_VER_INFO 0x001d 854 typedef struct { 855 u_int16_t con_handle; /* connection handle */ 856 } __attribute__ ((packed)) ng_hci_read_remote_ver_info_cp; 857 /* No return parameter(s) */ 858 859 #define NG_HCI_OCF_READ_CLOCK_OFFSET 0x001f 860 typedef struct { 861 u_int16_t con_handle; /* connection handle */ 862 } __attribute__ ((packed)) ng_hci_read_clock_offset_cp; 863 /* No return parameter(s) */ 864 865 #define NG_HCI_IO_CAPABILITY_REQUEST_REPLY 0x002b 866 typedef struct { 867 bdaddr_t bdaddr; 868 u_int8_t io_capability; 869 u_int8_t oob_data_present; 870 u_int8_t authentication_requirements; 871 } __attribute__ ((packed)) ng_hci_io_capability_request_reply_cp; 872 873 typedef struct { 874 u_int8_t status; 875 bdaddr_t bdaddr; 876 } __attribute__ ((packed)) ng_hci_io_capability_request_reply_rp; 877 878 #define NG_HCI_USER_CONFIRMATION_REQUEST_REPLY 0x002c 879 typedef struct { 880 bdaddr_t bdaddr; 881 } __attribute__ ((packed)) ng_hci_user_confirmation_request_reply_cp; 882 883 typedef struct { 884 u_int8_t status; 885 bdaddr_t bdaddr; 886 } __attribute__ ((packed)) ng_hci_user_confirmation_request_reply_rp; 887 888 #define NG_HCI_USER_CONFIRMATION_REQUEST_NEGATIVE_REPLY 0x002d 889 typedef struct { 890 bdaddr_t bdaddr; 891 } __attribute__((packed)) ng_hci_user_confirmation_request_negative_reply_cp; 892 893 typedef struct { 894 u_int8_t status; 895 bdaddr_t bdaddr; 896 } __attribute__ ((packed)) ng_hci_user_confirmation_request_negative_reply_rp; 897 898 #define NG_HCI_IO_CAPABILITY_REQUEST_NEGATIVE_REPLY 0x0034 899 typedef struct { 900 bdaddr_t bdaddr; 901 u_int8_t reason; 902 } __attribute__ ((packed)) ng_hci_io_capability_request_negative_reply_cp; 903 904 typedef struct { 905 u_int8_t status; 906 bdaddr_t bdaddr; 907 } __attribute__ ((packed)) ng_hci_io_capability_request_negative_reply_rp; 908 909 /************************************************************************** 910 ************************************************************************** 911 ** Link policy commands and return parameters 912 ************************************************************************** 913 **************************************************************************/ 914 915 #define NG_HCI_OGF_LINK_POLICY 0x02 /* OpCode Group Field */ 916 917 #define NG_HCI_OCF_HOLD_MODE 0x0001 918 typedef struct { 919 u_int16_t con_handle; /* connection handle */ 920 u_int16_t max_interval; /* (max_interval * 0.625) msec */ 921 u_int16_t min_interval; /* (max_interval * 0.625) msec */ 922 } __attribute__ ((packed)) ng_hci_hold_mode_cp; 923 /* No return parameter(s) */ 924 925 #define NG_HCI_OCF_SNIFF_MODE 0x0003 926 typedef struct { 927 u_int16_t con_handle; /* connection handle */ 928 u_int16_t max_interval; /* (max_interval * 0.625) msec */ 929 u_int16_t min_interval; /* (max_interval * 0.625) msec */ 930 u_int16_t attempt; /* (2 * attempt - 1) * 0.625 msec */ 931 u_int16_t timeout; /* (2 * attempt - 1) * 0.625 msec */ 932 } __attribute__ ((packed)) ng_hci_sniff_mode_cp; 933 /* No return parameter(s) */ 934 935 #define NG_HCI_OCF_EXIT_SNIFF_MODE 0x0004 936 typedef struct { 937 u_int16_t con_handle; /* connection handle */ 938 } __attribute__ ((packed)) ng_hci_exit_sniff_mode_cp; 939 /* No return parameter(s) */ 940 941 #define NG_HCI_OCF_PARK_MODE 0x0005 942 typedef struct { 943 u_int16_t con_handle; /* connection handle */ 944 u_int16_t max_interval; /* (max_interval * 0.625) msec */ 945 u_int16_t min_interval; /* (max_interval * 0.625) msec */ 946 } __attribute__ ((packed)) ng_hci_park_mode_cp; 947 /* No return parameter(s) */ 948 949 #define NG_HCI_OCF_EXIT_PARK_MODE 0x0006 950 typedef struct { 951 u_int16_t con_handle; /* connection handle */ 952 } __attribute__ ((packed)) ng_hci_exit_park_mode_cp; 953 /* No return parameter(s) */ 954 955 #define NG_HCI_OCF_QOS_SETUP 0x0007 956 typedef struct { 957 u_int16_t con_handle; /* connection handle */ 958 u_int8_t flags; /* reserved for future use */ 959 u_int8_t service_type; /* service type */ 960 u_int32_t token_rate; /* bytes per second */ 961 u_int32_t peak_bandwidth; /* bytes per second */ 962 u_int32_t latency; /* microseconds */ 963 u_int32_t delay_variation; /* microseconds */ 964 } __attribute__ ((packed)) ng_hci_qos_setup_cp; 965 /* No return parameter(s) */ 966 967 #define NG_HCI_OCF_ROLE_DISCOVERY 0x0009 968 typedef struct { 969 u_int16_t con_handle; /* connection handle */ 970 } __attribute__ ((packed)) ng_hci_role_discovery_cp; 971 972 typedef struct { 973 u_int8_t status; /* 0x00 - success */ 974 u_int16_t con_handle; /* connection handle */ 975 u_int8_t role; /* role for the connection handle */ 976 } __attribute__ ((packed)) ng_hci_role_discovery_rp; 977 978 #define NG_HCI_OCF_SWITCH_ROLE 0x000b 979 typedef struct { 980 bdaddr_t bdaddr; /* remote address */ 981 u_int8_t role; /* new local role */ 982 } __attribute__ ((packed)) ng_hci_switch_role_cp; 983 /* No return parameter(s) */ 984 985 #define NG_HCI_OCF_READ_LINK_POLICY_SETTINGS 0x000c 986 typedef struct { 987 u_int16_t con_handle; /* connection handle */ 988 } __attribute__ ((packed)) ng_hci_read_link_policy_settings_cp; 989 990 typedef struct { 991 u_int8_t status; /* 0x00 - success */ 992 u_int16_t con_handle; /* connection handle */ 993 u_int16_t settings; /* link policy settings */ 994 } __attribute__ ((packed)) ng_hci_read_link_policy_settings_rp; 995 996 #define NG_HCI_OCF_WRITE_LINK_POLICY_SETTINGS 0x000d 997 typedef struct { 998 u_int16_t con_handle; /* connection handle */ 999 u_int16_t settings; /* link policy settings */ 1000 } __attribute__ ((packed)) ng_hci_write_link_policy_settings_cp; 1001 1002 typedef struct { 1003 u_int8_t status; /* 0x00 - success */ 1004 u_int16_t con_handle; /* connection handle */ 1005 } __attribute__ ((packed)) ng_hci_write_link_policy_settings_rp; 1006 1007 /************************************************************************** 1008 ************************************************************************** 1009 ** Host controller and baseband commands and return parameters 1010 ************************************************************************** 1011 **************************************************************************/ 1012 1013 #define NG_HCI_OGF_HC_BASEBAND 0x03 /* OpCode Group Field */ 1014 1015 #define NG_HCI_OCF_SET_EVENT_MASK 0x0001 1016 typedef struct { 1017 u_int8_t event_mask[NG_HCI_EVENT_MASK_SIZE]; /* event_mask */ 1018 } __attribute__ ((packed)) ng_hci_set_event_mask_cp; 1019 1020 typedef ng_hci_status_rp ng_hci_set_event_mask_rp; 1021 #define NG_HCI_EVENT_MASK_DEFAULT 0x1fffffffffff 1022 #define NG_HCI_EVENT_MASK_LE 0x2000000000000000 1023 1024 #define NG_HCI_OCF_RESET 0x0003 1025 /* No command parameter(s) */ 1026 typedef ng_hci_status_rp ng_hci_reset_rp; 1027 1028 #define NG_HCI_OCF_SET_EVENT_FILTER 0x0005 1029 typedef struct { 1030 u_int8_t filter_type; /* filter type */ 1031 u_int8_t filter_condition_type; /* filter condition type */ 1032 u_int8_t condition[0]; /* conditions - variable size */ 1033 } __attribute__ ((packed)) ng_hci_set_event_filter_cp; 1034 1035 typedef ng_hci_status_rp ng_hci_set_event_filter_rp; 1036 1037 #define NG_HCI_OCF_FLUSH 0x0008 1038 typedef struct { 1039 u_int16_t con_handle; /* connection handle */ 1040 } __attribute__ ((packed)) ng_hci_flush_cp; 1041 1042 typedef struct { 1043 u_int8_t status; /* 0x00 - success */ 1044 u_int16_t con_handle; /* connection handle */ 1045 } __attribute__ ((packed)) ng_hci_flush_rp; 1046 1047 #define NG_HCI_OCF_READ_PIN_TYPE 0x0009 1048 /* No command parameter(s) */ 1049 typedef struct { 1050 u_int8_t status; /* 0x00 - success */ 1051 u_int8_t pin_type; /* PIN type */ 1052 } __attribute__ ((packed)) ng_hci_read_pin_type_rp; 1053 1054 #define NG_HCI_OCF_WRITE_PIN_TYPE 0x000a 1055 typedef struct { 1056 u_int8_t pin_type; /* PIN type */ 1057 } __attribute__ ((packed)) ng_hci_write_pin_type_cp; 1058 1059 typedef ng_hci_status_rp ng_hci_write_pin_type_rp; 1060 1061 #define NG_HCI_OCF_CREATE_NEW_UNIT_KEY 0x000b 1062 /* No command parameter(s) */ 1063 typedef ng_hci_status_rp ng_hci_create_new_unit_key_rp; 1064 1065 #define NG_HCI_OCF_READ_STORED_LINK_KEY 0x000d 1066 typedef struct { 1067 bdaddr_t bdaddr; /* address */ 1068 u_int8_t read_all; /* read all keys? 0x01 - yes */ 1069 } __attribute__ ((packed)) ng_hci_read_stored_link_key_cp; 1070 1071 typedef struct { 1072 u_int8_t status; /* 0x00 - success */ 1073 u_int16_t max_num_keys; /* Max. number of keys */ 1074 u_int16_t num_keys_read; /* Number of stored keys */ 1075 } __attribute__ ((packed)) ng_hci_read_stored_link_key_rp; 1076 1077 #define NG_HCI_OCF_WRITE_STORED_LINK_KEY 0x0011 1078 typedef struct { 1079 u_int8_t num_keys_write; /* # of keys to write */ 1080 /* these are repeated "num_keys_write" times 1081 bdaddr_t bdaddr; --- remote address(es) 1082 u_int8_t key[NG_HCI_KEY_SIZE]; --- key(s) */ 1083 } __attribute__ ((packed)) ng_hci_write_stored_link_key_cp; 1084 1085 typedef struct { 1086 u_int8_t status; /* 0x00 - success */ 1087 u_int8_t num_keys_written; /* # of keys successfully written */ 1088 } __attribute__ ((packed)) ng_hci_write_stored_link_key_rp; 1089 1090 #define NG_HCI_OCF_DELETE_STORED_LINK_KEY 0x0012 1091 typedef struct { 1092 bdaddr_t bdaddr; /* address */ 1093 u_int8_t delete_all; /* delete all keys? 0x01 - yes */ 1094 } __attribute__ ((packed)) ng_hci_delete_stored_link_key_cp; 1095 1096 typedef struct { 1097 u_int8_t status; /* 0x00 - success */ 1098 u_int16_t num_keys_deleted; /* Number of keys deleted */ 1099 } __attribute__ ((packed)) ng_hci_delete_stored_link_key_rp; 1100 1101 #define NG_HCI_OCF_CHANGE_LOCAL_NAME 0x0013 1102 typedef struct { 1103 char name[NG_HCI_UNIT_NAME_SIZE]; /* new unit name */ 1104 } __attribute__ ((packed)) ng_hci_change_local_name_cp; 1105 1106 typedef ng_hci_status_rp ng_hci_change_local_name_rp; 1107 1108 #define NG_HCI_OCF_READ_LOCAL_NAME 0x0014 1109 /* No command parameter(s) */ 1110 typedef struct { 1111 u_int8_t status; /* 0x00 - success */ 1112 char name[NG_HCI_UNIT_NAME_SIZE]; /* unit name */ 1113 } __attribute__ ((packed)) ng_hci_read_local_name_rp; 1114 1115 #define NG_HCI_OCF_READ_CON_ACCEPT_TIMO 0x0015 1116 /* No command parameter(s) */ 1117 typedef struct { 1118 u_int8_t status; /* 0x00 - success */ 1119 u_int16_t timeout; /* (timeout * 0.625) msec */ 1120 } __attribute__ ((packed)) ng_hci_read_con_accept_timo_rp; 1121 1122 #define NG_HCI_OCF_WRITE_CON_ACCEPT_TIMO 0x0016 1123 typedef struct { 1124 u_int16_t timeout; /* (timeout * 0.625) msec */ 1125 } __attribute__ ((packed)) ng_hci_write_con_accept_timo_cp; 1126 1127 typedef ng_hci_status_rp ng_hci_write_con_accept_timo_rp; 1128 1129 #define NG_HCI_OCF_READ_PAGE_TIMO 0x0017 1130 /* No command parameter(s) */ 1131 typedef struct { 1132 u_int8_t status; /* 0x00 - success */ 1133 u_int16_t timeout; /* (timeout * 0.625) msec */ 1134 } __attribute__ ((packed)) ng_hci_read_page_timo_rp; 1135 1136 #define NG_HCI_OCF_WRITE_PAGE_TIMO 0x0018 1137 typedef struct { 1138 u_int16_t timeout; /* (timeout * 0.625) msec */ 1139 } __attribute__ ((packed)) ng_hci_write_page_timo_cp; 1140 1141 typedef ng_hci_status_rp ng_hci_write_page_timo_rp; 1142 1143 #define NG_HCI_OCF_READ_SCAN_ENABLE 0x0019 1144 /* No command parameter(s) */ 1145 typedef struct { 1146 u_int8_t status; /* 0x00 - success */ 1147 u_int8_t scan_enable; /* Scan enable */ 1148 } __attribute__ ((packed)) ng_hci_read_scan_enable_rp; 1149 1150 #define NG_HCI_OCF_WRITE_SCAN_ENABLE 0x001a 1151 typedef struct { 1152 u_int8_t scan_enable; /* Scan enable */ 1153 } __attribute__ ((packed)) ng_hci_write_scan_enable_cp; 1154 1155 typedef ng_hci_status_rp ng_hci_write_scan_enable_rp; 1156 1157 #define NG_HCI_OCF_READ_PAGE_SCAN_ACTIVITY 0x001b 1158 /* No command parameter(s) */ 1159 typedef struct { 1160 u_int8_t status; /* 0x00 - success */ 1161 u_int16_t page_scan_interval; /* interval * 0.625 msec */ 1162 u_int16_t page_scan_window; /* window * 0.625 msec */ 1163 } __attribute__ ((packed)) ng_hci_read_page_scan_activity_rp; 1164 1165 #define NG_HCI_OCF_WRITE_PAGE_SCAN_ACTIVITY 0x001c 1166 typedef struct { 1167 u_int16_t page_scan_interval; /* interval * 0.625 msec */ 1168 u_int16_t page_scan_window; /* window * 0.625 msec */ 1169 } __attribute__ ((packed)) ng_hci_write_page_scan_activity_cp; 1170 1171 typedef ng_hci_status_rp ng_hci_write_page_scan_activity_rp; 1172 1173 #define NG_HCI_OCF_READ_INQUIRY_SCAN_ACTIVITY 0x001d 1174 /* No command parameter(s) */ 1175 typedef struct { 1176 u_int8_t status; /* 0x00 - success */ 1177 u_int16_t inquiry_scan_interval; /* interval * 0.625 msec */ 1178 u_int16_t inquiry_scan_window; /* window * 0.625 msec */ 1179 } __attribute__ ((packed)) ng_hci_read_inquiry_scan_activity_rp; 1180 1181 #define NG_HCI_OCF_WRITE_INQUIRY_SCAN_ACTIVITY 0x001e 1182 typedef struct { 1183 u_int16_t inquiry_scan_interval; /* interval * 0.625 msec */ 1184 u_int16_t inquiry_scan_window; /* window * 0.625 msec */ 1185 } __attribute__ ((packed)) ng_hci_write_inquiry_scan_activity_cp; 1186 1187 typedef ng_hci_status_rp ng_hci_write_inquiry_scan_activity_rp; 1188 1189 #define NG_HCI_OCF_READ_AUTH_ENABLE 0x001f 1190 /* No command parameter(s) */ 1191 typedef struct { 1192 u_int8_t status; /* 0x00 - success */ 1193 u_int8_t auth_enable; /* 0x01 - enabled */ 1194 } __attribute__ ((packed)) ng_hci_read_auth_enable_rp; 1195 1196 #define NG_HCI_OCF_WRITE_AUTH_ENABLE 0x0020 1197 typedef struct { 1198 u_int8_t auth_enable; /* 0x01 - enabled */ 1199 } __attribute__ ((packed)) ng_hci_write_auth_enable_cp; 1200 1201 typedef ng_hci_status_rp ng_hci_write_auth_enable_rp; 1202 1203 #define NG_HCI_OCF_READ_ENCRYPTION_MODE 0x0021 1204 /* No command parameter(s) */ 1205 typedef struct { 1206 u_int8_t status; /* 0x00 - success */ 1207 u_int8_t encryption_mode; /* encryption mode */ 1208 } __attribute__ ((packed)) ng_hci_read_encryption_mode_rp; 1209 1210 #define NG_HCI_OCF_WRITE_ENCRYPTION_MODE 0x0022 1211 typedef struct { 1212 u_int8_t encryption_mode; /* encryption mode */ 1213 } __attribute__ ((packed)) ng_hci_write_encryption_mode_cp; 1214 1215 typedef ng_hci_status_rp ng_hci_write_encryption_mode_rp; 1216 1217 #define NG_HCI_OCF_READ_UNIT_CLASS 0x0023 1218 /* No command parameter(s) */ 1219 typedef struct { 1220 u_int8_t status; /* 0x00 - success */ 1221 u_int8_t uclass[NG_HCI_CLASS_SIZE]; /* unit class */ 1222 } __attribute__ ((packed)) ng_hci_read_unit_class_rp; 1223 1224 #define NG_HCI_OCF_WRITE_UNIT_CLASS 0x0024 1225 typedef struct { 1226 u_int8_t uclass[NG_HCI_CLASS_SIZE]; /* unit class */ 1227 } __attribute__ ((packed)) ng_hci_write_unit_class_cp; 1228 1229 typedef ng_hci_status_rp ng_hci_write_unit_class_rp; 1230 1231 #define NG_HCI_OCF_READ_VOICE_SETTINGS 0x0025 1232 /* No command parameter(s) */ 1233 typedef struct { 1234 u_int8_t status; /* 0x00 - success */ 1235 u_int16_t settings; /* voice settings */ 1236 } __attribute__ ((packed)) ng_hci_read_voice_settings_rp; 1237 1238 #define NG_HCI_OCF_WRITE_VOICE_SETTINGS 0x0026 1239 typedef struct { 1240 u_int16_t settings; /* voice settings */ 1241 } __attribute__ ((packed)) ng_hci_write_voice_settings_cp; 1242 1243 typedef ng_hci_status_rp ng_hci_write_voice_settings_rp; 1244 1245 #define NG_HCI_OCF_READ_AUTO_FLUSH_TIMO 0x0027 1246 typedef struct { 1247 u_int16_t con_handle; /* connection handle */ 1248 } __attribute__ ((packed)) ng_hci_read_auto_flush_timo_cp; 1249 1250 typedef struct { 1251 u_int8_t status; /* 0x00 - success */ 1252 u_int16_t con_handle; /* connection handle */ 1253 u_int16_t timeout; /* 0x00 - no flush, timeout * 0.625 msec */ 1254 } __attribute__ ((packed)) ng_hci_read_auto_flush_timo_rp; 1255 1256 #define NG_HCI_OCF_WRITE_AUTO_FLUSH_TIMO 0x0028 1257 typedef struct { 1258 u_int16_t con_handle; /* connection handle */ 1259 u_int16_t timeout; /* 0x00 - no flush, timeout * 0.625 msec */ 1260 } __attribute__ ((packed)) ng_hci_write_auto_flush_timo_cp; 1261 1262 typedef struct { 1263 u_int8_t status; /* 0x00 - success */ 1264 u_int16_t con_handle; /* connection handle */ 1265 } __attribute__ ((packed)) ng_hci_write_auto_flush_timo_rp; 1266 1267 #define NG_HCI_OCF_READ_NUM_BROADCAST_RETRANS 0x0029 1268 /* No command parameter(s) */ 1269 typedef struct { 1270 u_int8_t status; /* 0x00 - success */ 1271 u_int8_t counter; /* number of broadcast retransmissions */ 1272 } __attribute__ ((packed)) ng_hci_read_num_broadcast_retrans_rp; 1273 1274 #define NG_HCI_OCF_WRITE_NUM_BROADCAST_RETRANS 0x002a 1275 typedef struct { 1276 u_int8_t counter; /* number of broadcast retransmissions */ 1277 } __attribute__ ((packed)) ng_hci_write_num_broadcast_retrans_cp; 1278 1279 typedef ng_hci_status_rp ng_hci_write_num_broadcast_retrans_rp; 1280 1281 #define NG_HCI_OCF_READ_HOLD_MODE_ACTIVITY 0x002b 1282 /* No command parameter(s) */ 1283 typedef struct { 1284 u_int8_t status; /* 0x00 - success */ 1285 u_int8_t hold_mode_activity; /* Hold mode activities */ 1286 } __attribute__ ((packed)) ng_hci_read_hold_mode_activity_rp; 1287 1288 #define NG_HCI_OCF_WRITE_HOLD_MODE_ACTIVITY 0x002c 1289 typedef struct { 1290 u_int8_t hold_mode_activity; /* Hold mode activities */ 1291 } __attribute__ ((packed)) ng_hci_write_hold_mode_activity_cp; 1292 1293 typedef ng_hci_status_rp ng_hci_write_hold_mode_activity_rp; 1294 1295 #define NG_HCI_OCF_READ_XMIT_LEVEL 0x002d 1296 typedef struct { 1297 u_int16_t con_handle; /* connection handle */ 1298 u_int8_t type; /* Xmit level type */ 1299 } __attribute__ ((packed)) ng_hci_read_xmit_level_cp; 1300 1301 typedef struct { 1302 u_int8_t status; /* 0x00 - success */ 1303 u_int16_t con_handle; /* connection handle */ 1304 char level; /* -30 <= level <= 30 dBm */ 1305 } __attribute__ ((packed)) ng_hci_read_xmit_level_rp; 1306 1307 #define NG_HCI_OCF_READ_SCO_FLOW_CONTROL 0x002e 1308 /* No command parameter(s) */ 1309 typedef struct { 1310 u_int8_t status; /* 0x00 - success */ 1311 u_int8_t flow_control; /* 0x00 - disabled */ 1312 } __attribute__ ((packed)) ng_hci_read_sco_flow_control_rp; 1313 1314 #define NG_HCI_OCF_WRITE_SCO_FLOW_CONTROL 0x002f 1315 typedef struct { 1316 u_int8_t flow_control; /* 0x00 - disabled */ 1317 } __attribute__ ((packed)) ng_hci_write_sco_flow_control_cp; 1318 1319 typedef ng_hci_status_rp ng_hci_write_sco_flow_control_rp; 1320 1321 #define NG_HCI_OCF_H2HC_FLOW_CONTROL 0x0031 1322 typedef struct { 1323 u_int8_t h2hc_flow; /* Host to Host controller flow control */ 1324 } __attribute__ ((packed)) ng_hci_h2hc_flow_control_cp; 1325 1326 typedef ng_hci_status_rp ng_hci_h2hc_flow_control_rp; 1327 1328 #define NG_HCI_OCF_HOST_BUFFER_SIZE 0x0033 1329 typedef struct { 1330 u_int16_t max_acl_size; /* Max. size of ACL packet (bytes) */ 1331 u_int8_t max_sco_size; /* Max. size of SCO packet (bytes) */ 1332 u_int16_t num_acl_pkt; /* Max. number of ACL packets */ 1333 u_int16_t num_sco_pkt; /* Max. number of SCO packets */ 1334 } __attribute__ ((packed)) ng_hci_host_buffer_size_cp; 1335 1336 typedef ng_hci_status_rp ng_hci_host_buffer_size_rp; 1337 1338 #define NG_HCI_OCF_HOST_NUM_COMPL_PKTS 0x0035 1339 typedef struct { 1340 u_int8_t num_con_handles; /* # of connection handles */ 1341 /* these are repeated "num_con_handles" times 1342 u_int16_t con_handle; --- connection handle(s) 1343 u_int16_t compl_pkt; --- # of completed packets */ 1344 } __attribute__ ((packed)) ng_hci_host_num_compl_pkts_cp; 1345 /* No return parameter(s) */ 1346 1347 #define NG_HCI_OCF_READ_LINK_SUPERVISION_TIMO 0x0036 1348 typedef struct { 1349 u_int16_t con_handle; /* connection handle */ 1350 } __attribute__ ((packed)) ng_hci_read_link_supervision_timo_cp; 1351 1352 typedef struct { 1353 u_int8_t status; /* 0x00 - success */ 1354 u_int16_t con_handle; /* connection handle */ 1355 u_int16_t timeout; /* Link supervision timeout * 0.625 msec */ 1356 } __attribute__ ((packed)) ng_hci_read_link_supervision_timo_rp; 1357 1358 #define NG_HCI_OCF_WRITE_LINK_SUPERVISION_TIMO 0x0037 1359 typedef struct { 1360 u_int16_t con_handle; /* connection handle */ 1361 u_int16_t timeout; /* Link supervision timeout * 0.625 msec */ 1362 } __attribute__ ((packed)) ng_hci_write_link_supervision_timo_cp; 1363 1364 typedef struct { 1365 u_int8_t status; /* 0x00 - success */ 1366 u_int16_t con_handle; /* connection handle */ 1367 } __attribute__ ((packed)) ng_hci_write_link_supervision_timo_rp; 1368 1369 #define NG_HCI_OCF_READ_SUPPORTED_IAC_NUM 0x0038 1370 /* No command parameter(s) */ 1371 typedef struct { 1372 u_int8_t status; /* 0x00 - success */ 1373 u_int8_t num_iac; /* # of supported IAC during scan */ 1374 } __attribute__ ((packed)) ng_hci_read_supported_iac_num_rp; 1375 1376 #define NG_HCI_OCF_READ_IAC_LAP 0x0039 1377 /* No command parameter(s) */ 1378 typedef struct { 1379 u_int8_t status; /* 0x00 - success */ 1380 u_int8_t num_iac; /* # of IAC */ 1381 /* these are repeated "num_iac" times 1382 u_int8_t laps[NG_HCI_LAP_SIZE]; --- LAPs */ 1383 } __attribute__ ((packed)) ng_hci_read_iac_lap_rp; 1384 1385 #define NG_HCI_OCF_WRITE_IAC_LAP 0x003a 1386 typedef struct { 1387 u_int8_t num_iac; /* # of IAC */ 1388 /* these are repeated "num_iac" times 1389 u_int8_t laps[NG_HCI_LAP_SIZE]; --- LAPs */ 1390 } __attribute__ ((packed)) ng_hci_write_iac_lap_cp; 1391 1392 typedef ng_hci_status_rp ng_hci_write_iac_lap_rp; 1393 1394 /*0x003b-0x003e commands are depricated v2.0 or later*/ 1395 #define NG_HCI_OCF_READ_PAGE_SCAN_PERIOD 0x003b 1396 /* No command parameter(s) */ 1397 typedef struct { 1398 u_int8_t status; /* 0x00 - success */ 1399 u_int8_t page_scan_period_mode; /* Page scan period mode */ 1400 } __attribute__ ((packed)) ng_hci_read_page_scan_period_rp; 1401 1402 #define NG_HCI_OCF_WRITE_PAGE_SCAN_PERIOD 0x003c 1403 typedef struct { 1404 u_int8_t page_scan_period_mode; /* Page scan period mode */ 1405 } __attribute__ ((packed)) ng_hci_write_page_scan_period_cp; 1406 1407 typedef ng_hci_status_rp ng_hci_write_page_scan_period_rp; 1408 1409 #define NG_HCI_OCF_READ_PAGE_SCAN 0x003d 1410 /* No command parameter(s) */ 1411 typedef struct { 1412 u_int8_t status; /* 0x00 - success */ 1413 u_int8_t page_scan_mode; /* Page scan mode */ 1414 } __attribute__ ((packed)) ng_hci_read_page_scan_rp; 1415 1416 #define NG_HCI_OCF_WRITE_PAGE_SCAN 0x003e 1417 typedef struct { 1418 u_int8_t page_scan_mode; /* Page scan mode */ 1419 } __attribute__ ((packed)) ng_hci_write_page_scan_cp; 1420 1421 typedef ng_hci_status_rp ng_hci_write_page_scan_rp; 1422 1423 #define NG_HCI_OCF_WRITE_SIMPLE_PAIRING 0x0056 1424 typedef struct { 1425 u_int8_t simple_pairing; /* 1 -> enabled, 0 -> disabled */ 1426 } __attribute__ ((packed)) ng_hci_write_simple_pairing_cp; 1427 1428 typedef ng_hci_status_rp ng_hci_write_simple_pairing_rp; 1429 1430 #define NG_HCI_OCF_READ_LE_HOST_SUPPORTED 0x6c 1431 typedef struct { 1432 u_int8_t status; /* 0x00 - success */ 1433 u_int8_t le_supported_host ;/* LE host supported?*/ 1434 u_int8_t simultaneous_le_host; /* BR/LE simulateneous? */ 1435 } __attribute__ ((packed)) ng_hci_read_le_host_supported_rp; 1436 1437 #define NG_HCI_OCF_WRITE_LE_HOST_SUPPORTED 0x6d 1438 typedef struct { 1439 u_int8_t le_supported_host; /* LE host supported?*/ 1440 u_int8_t simultaneous_le_host; /* LE host supported?*/ 1441 } __attribute__ ((packed)) ng_hci_write_le_host_supported_cp; 1442 1443 typedef ng_hci_status_rp ng_hci_write_le_host_supported_rp; 1444 1445 #define NG_HCI_OCF_WRITE_SECURE_CONNECTIONS_HOST_SUPPORT 0x007a 1446 typedef struct { 1447 u_int8_t support; /* 0 - disabled, 1 - enabled */ 1448 } __attribute__ ((packed)) ng_hci_write_secure_connections_host_support_cp; 1449 1450 typedef ng_hci_status_rp ng_hci_write_secure_connections_host_support_rp; 1451 1452 /************************************************************************** 1453 ************************************************************************** 1454 ** Informational commands and return parameters 1455 ** All commands in this category do not accept any parameters 1456 ************************************************************************** 1457 **************************************************************************/ 1458 1459 #define NG_HCI_OGF_INFO 0x04 /* OpCode Group Field */ 1460 1461 #define NG_HCI_OCF_READ_LOCAL_VER 0x0001 1462 typedef struct { 1463 u_int8_t status; /* 0x00 - success */ 1464 u_int8_t hci_version; /* HCI version */ 1465 u_int16_t hci_revision; /* HCI revision */ 1466 u_int8_t lmp_version; /* LMP version */ 1467 u_int16_t manufacturer; /* Hardware manufacturer name */ 1468 u_int16_t lmp_subversion; /* LMP sub-version */ 1469 } __attribute__ ((packed)) ng_hci_read_local_ver_rp; 1470 1471 #define NG_HCI_OCF_READ_LOCAL_COMMANDS 0x0002 1472 typedef struct { 1473 u_int8_t status; /* 0x00 - success */ 1474 u_int8_t features[NG_HCI_COMMANDS_SIZE]; /* command bitmsk*/ 1475 } __attribute__ ((packed)) ng_hci_read_local_commands_rp; 1476 1477 #define NG_HCI_OCF_READ_LOCAL_FEATURES 0x0003 1478 typedef struct { 1479 u_int8_t status; /* 0x00 - success */ 1480 u_int8_t features[NG_HCI_FEATURES_SIZE]; /* LMP features bitmsk*/ 1481 } __attribute__ ((packed)) ng_hci_read_local_features_rp; 1482 1483 #define NG_HCI_OCF_READ_BUFFER_SIZE 0x0005 1484 typedef struct { 1485 u_int8_t status; /* 0x00 - success */ 1486 u_int16_t max_acl_size; /* Max. size of ACL packet (bytes) */ 1487 u_int8_t max_sco_size; /* Max. size of SCO packet (bytes) */ 1488 u_int16_t num_acl_pkt; /* Max. number of ACL packets */ 1489 u_int16_t num_sco_pkt; /* Max. number of SCO packets */ 1490 } __attribute__ ((packed)) ng_hci_read_buffer_size_rp; 1491 1492 #define NG_HCI_OCF_READ_COUNTRY_CODE 0x0007 1493 typedef struct { 1494 u_int8_t status; /* 0x00 - success */ 1495 u_int8_t country_code; /* 0x00 - NAM, EUR, JP; 0x01 - France */ 1496 } __attribute__ ((packed)) ng_hci_read_country_code_rp; 1497 1498 #define NG_HCI_OCF_READ_BDADDR 0x0009 1499 typedef struct { 1500 u_int8_t status; /* 0x00 - success */ 1501 bdaddr_t bdaddr; /* unit address */ 1502 } __attribute__ ((packed)) ng_hci_read_bdaddr_rp; 1503 1504 /************************************************************************** 1505 ************************************************************************** 1506 ** Status commands and return parameters 1507 ************************************************************************** 1508 **************************************************************************/ 1509 1510 #define NG_HCI_OGF_STATUS 0x05 /* OpCode Group Field */ 1511 1512 #define NG_HCI_OCF_READ_FAILED_CONTACT_CNTR 0x0001 1513 typedef struct { 1514 u_int16_t con_handle; /* connection handle */ 1515 } __attribute__ ((packed)) ng_hci_read_failed_contact_cntr_cp; 1516 1517 typedef struct { 1518 u_int8_t status; /* 0x00 - success */ 1519 u_int16_t con_handle; /* connection handle */ 1520 u_int16_t counter; /* number of consecutive failed contacts */ 1521 } __attribute__ ((packed)) ng_hci_read_failed_contact_cntr_rp; 1522 1523 #define NG_HCI_OCF_RESET_FAILED_CONTACT_CNTR 0x0002 1524 typedef struct { 1525 u_int16_t con_handle; /* connection handle */ 1526 } __attribute__ ((packed)) ng_hci_reset_failed_contact_cntr_cp; 1527 1528 typedef struct { 1529 u_int8_t status; /* 0x00 - success */ 1530 u_int16_t con_handle; /* connection handle */ 1531 } __attribute__ ((packed)) ng_hci_reset_failed_contact_cntr_rp; 1532 1533 #define NG_HCI_OCF_GET_LINK_QUALITY 0x0003 1534 typedef struct { 1535 u_int16_t con_handle; /* connection handle */ 1536 } __attribute__ ((packed)) ng_hci_get_link_quality_cp; 1537 1538 typedef struct { 1539 u_int8_t status; /* 0x00 - success */ 1540 u_int16_t con_handle; /* connection handle */ 1541 u_int8_t quality; /* higher value means better quality */ 1542 } __attribute__ ((packed)) ng_hci_get_link_quality_rp; 1543 1544 #define NG_HCI_OCF_READ_RSSI 0x0005 1545 typedef struct { 1546 u_int16_t con_handle; /* connection handle */ 1547 } __attribute__ ((packed)) ng_hci_read_rssi_cp; 1548 1549 typedef struct { 1550 u_int8_t status; /* 0x00 - success */ 1551 u_int16_t con_handle; /* connection handle */ 1552 char rssi; /* -127 <= rssi <= 127 dB */ 1553 } __attribute__ ((packed)) ng_hci_read_rssi_rp; 1554 1555 /************************************************************************** 1556 ************************************************************************** 1557 ** Testing commands and return parameters 1558 ************************************************************************** 1559 **************************************************************************/ 1560 1561 #define NG_HCI_OGF_TESTING 0x06 /* OpCode Group Field */ 1562 1563 #define NG_HCI_OCF_READ_LOOPBACK_MODE 0x0001 1564 /* No command parameter(s) */ 1565 typedef struct { 1566 u_int8_t status; /* 0x00 - success */ 1567 u_int8_t lbmode; /* loopback mode */ 1568 } __attribute__ ((packed)) ng_hci_read_loopback_mode_rp; 1569 1570 #define NG_HCI_OCF_WRITE_LOOPBACK_MODE 0x0002 1571 typedef struct { 1572 u_int8_t lbmode; /* loopback mode */ 1573 } __attribute__ ((packed)) ng_hci_write_loopback_mode_cp; 1574 1575 typedef ng_hci_status_rp ng_hci_write_loopback_mode_rp; 1576 1577 #define NG_HCI_OCF_ENABLE_UNIT_UNDER_TEST 0x0003 1578 /* No command parameter(s) */ 1579 typedef ng_hci_status_rp ng_hci_enable_unit_under_test_rp; 1580 1581 /************************************************************************** 1582 ************************************************************************** 1583 ** LE OpCode group field 1584 ************************************************************************** 1585 **************************************************************************/ 1586 1587 #define NG_HCI_OGF_LE 0x08 /* OpCode Group Field */ 1588 #define NG_HCI_OCF_LE_SET_EVENT_MASK 0x0001 1589 typedef struct { 1590 u_int8_t event_mask[NG_HCI_LE_EVENT_MASK_SIZE]; /* event_mask*/ 1591 1592 } __attribute__ ((packed)) ng_hci_le_set_event_mask_cp; 1593 typedef ng_hci_status_rp ng_hci_le_set_event_mask_rp; 1594 #define NG_HCI_LE_EVENT_MASK_ALL 0x1f 1595 1596 #define NG_HCI_OCF_LE_READ_BUFFER_SIZE 0x0002 1597 /*No command parameter */ 1598 typedef struct { 1599 u_int8_t status; /*status*/ 1600 u_int16_t hc_le_data_packet_length; 1601 u_int8_t hc_total_num_le_data_packets; 1602 } __attribute__ ((packed)) ng_hci_le_read_buffer_size_rp; 1603 1604 #define NG_HCI_OCF_LE_READ_LOCAL_SUPPORTED_FEATURES 0x0003 1605 /*No command parameter */ 1606 typedef struct { 1607 u_int8_t status; /*status*/ 1608 u_int64_t le_features; 1609 } __attribute__ ((packed)) ng_hci_le_read_local_supported_features_rp; 1610 1611 #define NG_HCI_OCF_LE_SET_RANDOM_ADDRESS 0x0005 1612 typedef struct { 1613 bdaddr_t random_address; 1614 } __attribute__ ((packed)) ng_hci_le_set_random_address_cp_; 1615 typedef ng_hci_status_rp ng_hci_le_set_random_address_rp; 1616 1617 #define NG_HCI_OCF_LE_SET_ADVERTISING_PARAMETERS 0x0006 1618 typedef struct { 1619 u_int16_t advertising_interval_min; 1620 u_int16_t advertising_interval_max; 1621 u_int8_t advertising_type; 1622 u_int8_t own_address_type; 1623 u_int8_t direct_address_type; 1624 bdaddr_t direct_address; 1625 u_int8_t advertising_channel_map; 1626 u_int8_t advertising_filter_policy; 1627 } __attribute__ ((packed)) ng_hci_le_set_advertising_parameters_cp; 1628 typedef ng_hci_status_rp ng_hci_le_set_advertising_parameters_rp; 1629 1630 #define NG_HCI_OCF_LE_READ_ADVERTISING_CHANNEL_TX_POWER 0x0007 1631 /*No command parameter*/ 1632 typedef struct { 1633 u_int8_t status; 1634 u_int8_t transmit_power_level; 1635 } __attribute__ ((packed)) ng_hci_le_read_advertising_channel_tx_power_rp; 1636 1637 #define NG_HCI_OCF_LE_SET_ADVERTISING_DATA 0x0008 1638 #define NG_HCI_ADVERTISING_DATA_SIZE 31 1639 typedef struct { 1640 u_int8_t advertising_data_length; 1641 char advertising_data[NG_HCI_ADVERTISING_DATA_SIZE]; 1642 } __attribute__ ((packed)) ng_hci_le_set_advertising_data_cp; 1643 typedef ng_hci_status_rp ng_hci_le_set_advertising_data_rp; 1644 1645 #define NG_HCI_OCF_LE_SET_SCAN_RESPONSE_DATA 0x0009 1646 1647 typedef struct { 1648 u_int8_t scan_response_data_length; 1649 char scan_response_data[NG_HCI_ADVERTISING_DATA_SIZE]; 1650 } __attribute__ ((packed)) ng_hci_le_set_scan_response_data_cp; 1651 typedef ng_hci_status_rp ng_hci_le_set_scan_response_data_rp; 1652 1653 #define NG_HCI_OCF_LE_SET_ADVERTISE_ENABLE 0x000a 1654 typedef struct { 1655 u_int8_t advertising_enable; 1656 }__attribute__ ((packed)) ng_hci_le_set_advertise_enable_cp; 1657 typedef ng_hci_status_rp ng_hci_le_set_advertise_enable_rp; 1658 1659 #define NG_HCI_OCF_LE_SET_SCAN_PARAMETERS 0x000b 1660 typedef struct { 1661 u_int8_t le_scan_type; 1662 u_int16_t le_scan_interval; 1663 u_int16_t le_scan_window; 1664 u_int8_t own_address_type; 1665 u_int8_t scanning_filter_policy; 1666 }__attribute__ ((packed)) ng_hci_le_set_scan_parameters_cp; 1667 typedef ng_hci_status_rp ng_hci_le_set_scan_parameters_rp; 1668 1669 #define NG_HCI_OCF_LE_SET_SCAN_ENABLE 0x000c 1670 typedef struct { 1671 u_int8_t le_scan_enable; 1672 u_int8_t filter_duplicates; 1673 }__attribute__ ((packed)) ng_hci_le_set_scan_enable_cp; 1674 typedef ng_hci_status_rp ng_hci_le_set_scan_enable_rp; 1675 1676 #define NG_HCI_OCF_LE_CREATE_CONNECTION 0x000d 1677 typedef struct { 1678 u_int16_t scan_interval; 1679 u_int16_t scan_window; 1680 u_int8_t filter_policy; 1681 u_int8_t peer_addr_type; 1682 bdaddr_t peer_addr; 1683 u_int8_t own_address_type; 1684 u_int16_t conn_interval_min; 1685 u_int16_t conn_interval_max; 1686 u_int16_t conn_latency; 1687 u_int16_t supervision_timeout; 1688 u_int16_t min_ce_length; 1689 u_int16_t max_ce_length; 1690 }__attribute__((packed)) ng_hci_le_create_connection_cp; 1691 /* No return parameters. */ 1692 #define NG_HCI_OCF_LE_CREATE_CONNECTION_CANCEL 0x000e 1693 /*No command parameter*/ 1694 typedef ng_hci_status_rp ng_hci_le_create_connection_cancel_rp; 1695 #define NG_HCI_OCF_LE_READ_WHITE_LIST_SIZE 0x000f 1696 /*No command parameter*/ 1697 typedef struct { 1698 u_int8_t status; 1699 u_int8_t white_list_size; 1700 } __attribute__ ((packed)) ng_hci_le_read_white_list_size_rp; 1701 1702 #define NG_HCI_OCF_LE_CLEAR_WHITE_LIST 0x0010 1703 /* No command parameters. */ 1704 typedef ng_hci_status_rp ng_hci_le_clear_white_list_rp; 1705 #define NG_HCI_OCF_LE_ADD_DEVICE_TO_WHITE_LIST 0x0011 1706 typedef struct { 1707 u_int8_t address_type; 1708 bdaddr_t address; 1709 } __attribute__ ((packed)) ng_hci_le_add_device_to_white_list_cp; 1710 typedef ng_hci_status_rp ng_hci_le_add_device_to_white_list_rp; 1711 1712 #define NG_HCI_OCF_LE_REMOVE_DEVICE_FROM_WHITE_LIST 0x0012 1713 typedef struct { 1714 u_int8_t address_type; 1715 bdaddr_t address; 1716 } __attribute__ ((packed)) ng_hci_le_remove_device_from_white_list_cp; 1717 typedef ng_hci_status_rp ng_hci_le_remove_device_from_white_list_rp; 1718 1719 #define NG_HCI_OCF_LE_CONNECTION_UPDATE 0x0013 1720 typedef struct { 1721 u_int16_t connection_handle; 1722 u_int16_t conn_interval_min; 1723 u_int16_t conn_interval_max; 1724 u_int16_t conn_latency; 1725 u_int16_t supervision_timeout; 1726 u_int16_t minimum_ce_length; 1727 u_int16_t maximum_ce_length; 1728 }__attribute__ ((packed)) ng_hci_le_connection_update_cp; 1729 /*no return parameter*/ 1730 1731 #define NG_HCI_OCF_LE_SET_HOST_CHANNEL_CLASSIFICATION 0x0014 1732 typedef struct{ 1733 u_int8_t le_channel_map[5]; 1734 }__attribute__ ((packed)) ng_hci_le_set_host_channel_classification_cp; 1735 typedef ng_hci_status_rp ng_hci_le_set_host_channel_classification_rp; 1736 1737 #define NG_HCI_OCF_LE_READ_CHANNEL_MAP 0x0015 1738 typedef struct { 1739 u_int16_t connection_handle; 1740 }__attribute__ ((packed)) ng_hci_le_read_channel_map_cp; 1741 typedef struct { 1742 u_int8_t status; 1743 u_int16_t connection_handle; 1744 u_int8_t le_channel_map[5]; 1745 } __attribute__ ((packed)) ng_hci_le_read_channel_map_rp; 1746 1747 #define NG_HCI_OCF_LE_READ_REMOTE_USED_FEATURES 0x0016 1748 typedef struct { 1749 u_int16_t connection_handle; 1750 }__attribute__ ((packed)) ng_hci_le_read_remote_used_features_cp; 1751 /*No return parameter*/ 1752 #define NG_HCI_128BIT 16 1753 #define NG_HCI_OCF_LE_ENCRYPT 0x0017 1754 typedef struct { 1755 u_int8_t key[NG_HCI_128BIT]; 1756 u_int8_t plaintext_data[NG_HCI_128BIT]; 1757 }__attribute__ ((packed)) ng_hci_le_encrypt_cp; 1758 typedef struct { 1759 u_int8_t status; 1760 u_int8_t plaintext_data[NG_HCI_128BIT]; 1761 }__attribute__ ((packed)) ng_hci_le_encrypt_rp; 1762 1763 #define NG_HCI_OCF_LE_RAND 0x0018 1764 /*No command parameter*/ 1765 typedef struct { 1766 u_int8_t status; 1767 u_int64_t random_number; 1768 }__attribute__ ((packed)) ng_hci_le_rand_rp; 1769 1770 #define NG_HCI_OCF_LE_START_ENCRYPTION 0x0019 1771 typedef struct { 1772 u_int16_t connection_handle; 1773 u_int64_t random_number; 1774 u_int16_t encrypted_diversifier; 1775 u_int8_t long_term_key[NG_HCI_128BIT]; 1776 }__attribute__ ((packed)) ng_hci_le_start_encryption_cp; 1777 /*No return parameter*/ 1778 #define NG_HCI_OCF_LE_LONG_TERM_KEY_REQUEST_REPLY 0x001a 1779 typedef struct { 1780 u_int16_t connection_handle; 1781 u_int8_t long_term_key[NG_HCI_128BIT]; 1782 }__attribute__ ((packed)) ng_hci_le_long_term_key_request_reply_cp; 1783 typedef struct { 1784 u_int8_t status; 1785 u_int16_t connection_handle; 1786 }__attribute__ ((packed)) ng_hci_le_long_term_key_request_reply_rp; 1787 1788 #define NG_HCI_OCF_LE_LONG_TERM_KEY_REQUEST_NEGATIVE_REPLY 0x001b 1789 typedef struct{ 1790 u_int16_t connection_handle; 1791 }__attribute__((packed)) ng_hci_le_long_term_key_request_negative_reply_cp; 1792 typedef struct { 1793 u_int8_t status; 1794 u_int16_t connection_handle; 1795 }__attribute__ ((packed)) ng_hci_le_long_term_key_request_negative_reply_rp; 1796 1797 #define NG_HCI_OCF_LE_READ_SUGGESTED_DATA_LENGTH 0x0023 1798 /*No command parameter*/ 1799 typedef struct { 1800 u_int8_t status; 1801 u_int16_t suggested_max_tx_octets; 1802 u_int16_t suggested_max_tx_time; 1803 }__attribute__ ((packed)) ng_hci_le_read_suggested_data_length_rp; 1804 1805 #define NG_HCI_OCF_LE_WRITE_SUGGESTED_DATA_LENGTH 0x0024 1806 typedef struct { 1807 u_int16_t suggested_max_tx_octets; 1808 u_int16_t suggested_max_tx_time; 1809 }__attribute__ ((packed)) ng_hci_le_write_suggested_data_length_cp; 1810 typedef ng_hci_status_rp ng_hci_le_write_suggested_data_length_rp; 1811 1812 #define NG_HCI_OCF_LE_READ_BUFFER_SIZE_V2 0x0060 1813 /*No command parameter */ 1814 typedef struct { 1815 u_int8_t status; 1816 u_int16_t hc_le_data_packet_length; 1817 u_int8_t hc_total_num_le_data_packets; 1818 u_int16_t hc_iso_data_packet_length; 1819 u_int8_t hc_total_num_iso_data_packets; 1820 } __attribute__ ((packed)) ng_hci_le_read_buffer_size_rp_v2; 1821 1822 #define NG_HCI_OCF_LE_READ_SUPPORTED_STATES 0x001c 1823 /*No command parameter*/ 1824 typedef struct { 1825 u_int8_t status; 1826 u_int64_t le_states; 1827 }__attribute__ ((packed)) ng_hci_le_read_supported_states_rp; 1828 1829 #define NG_HCI_OCF_LE_RECEIVER_TEST 0x001d 1830 typedef struct{ 1831 u_int8_t rx_frequency; 1832 } __attribute__((packed)) ng_le_receiver_test_cp; 1833 typedef ng_hci_status_rp ng_hci_le_receiver_test_rp; 1834 1835 #define NG_HCI_OCF_LE_TRANSMITTER_TEST 0x001e 1836 typedef struct{ 1837 u_int8_t tx_frequency; 1838 u_int8_t length_of_test_data; 1839 u_int8_t packet_payload; 1840 } __attribute__((packed)) ng_le_transmitter_test_cp; 1841 typedef ng_hci_status_rp ng_hci_le_transmitter_test_rp; 1842 1843 #define NG_HCI_OCF_LE_TEST_END 0x001f 1844 /* No command parameter. */ 1845 typedef struct { 1846 u_int8_t status; 1847 u_int16_t number_of_packets; 1848 }__attribute__ ((packed)) ng_hci_le_test_end_rp; 1849 1850 /************************************************************************** 1851 ************************************************************************** 1852 ** Special HCI OpCode group field values 1853 ************************************************************************** 1854 **************************************************************************/ 1855 1856 #define NG_HCI_OGF_BT_LOGO 0x3e 1857 1858 #define NG_HCI_OGF_VENDOR 0x3f 1859 1860 /************************************************************************** 1861 ************************************************************************** 1862 ** Events and event parameters 1863 ************************************************************************** 1864 **************************************************************************/ 1865 1866 #define NG_HCI_EVENT_INQUIRY_COMPL 0x01 1867 typedef struct { 1868 u_int8_t status; /* 0x00 - success */ 1869 } __attribute__ ((packed)) ng_hci_inquiry_compl_ep; 1870 1871 #define NG_HCI_EVENT_INQUIRY_RESULT 0x02 1872 typedef struct { 1873 u_int8_t num_responses; /* number of responses */ 1874 /* ng_hci_inquiry_response[num_responses] -- see below */ 1875 } __attribute__ ((packed)) ng_hci_inquiry_result_ep; 1876 1877 typedef struct { 1878 bdaddr_t bdaddr; /* unit address */ 1879 u_int8_t page_scan_rep_mode; /* page scan rep. mode */ 1880 u_int8_t page_scan_period_mode; /* page scan period mode */ 1881 u_int8_t page_scan_mode; /* page scan mode */ 1882 u_int8_t uclass[NG_HCI_CLASS_SIZE];/* unit class */ 1883 u_int16_t clock_offset; /* clock offset */ 1884 } __attribute__ ((packed)) ng_hci_inquiry_response; 1885 1886 #define NG_HCI_EVENT_CON_COMPL 0x03 1887 typedef struct { 1888 u_int8_t status; /* 0x00 - success */ 1889 u_int16_t con_handle; /* Connection handle */ 1890 bdaddr_t bdaddr; /* remote unit address */ 1891 u_int8_t link_type; /* Link type */ 1892 u_int8_t encryption_mode; /* Encryption mode */ 1893 } __attribute__ ((packed)) ng_hci_con_compl_ep; 1894 1895 #define NG_HCI_EVENT_CON_REQ 0x04 1896 typedef struct { 1897 bdaddr_t bdaddr; /* remote unit address */ 1898 u_int8_t uclass[NG_HCI_CLASS_SIZE]; /* remote unit class */ 1899 u_int8_t link_type; /* link type */ 1900 } __attribute__ ((packed)) ng_hci_con_req_ep; 1901 1902 #define NG_HCI_EVENT_DISCON_COMPL 0x05 1903 typedef struct { 1904 u_int8_t status; /* 0x00 - success */ 1905 u_int16_t con_handle; /* connection handle */ 1906 u_int8_t reason; /* reason to disconnect */ 1907 } __attribute__ ((packed)) ng_hci_discon_compl_ep; 1908 1909 #define NG_HCI_EVENT_AUTH_COMPL 0x06 1910 typedef struct { 1911 u_int8_t status; /* 0x00 - success */ 1912 u_int16_t con_handle; /* connection handle */ 1913 } __attribute__ ((packed)) ng_hci_auth_compl_ep; 1914 1915 #define NG_HCI_EVENT_REMOTE_NAME_REQ_COMPL 0x7 1916 typedef struct { 1917 u_int8_t status; /* 0x00 - success */ 1918 bdaddr_t bdaddr; /* remote unit address */ 1919 char name[NG_HCI_UNIT_NAME_SIZE]; /* remote unit name */ 1920 } __attribute__ ((packed)) ng_hci_remote_name_req_compl_ep; 1921 1922 #define NG_HCI_EVENT_ENCRYPTION_CHANGE 0x08 1923 typedef struct { 1924 u_int8_t status; /* 0x00 - success */ 1925 u_int16_t con_handle; /* Connection handle */ 1926 u_int8_t encryption_enable; /* 0x00 - disable */ 1927 } __attribute__ ((packed)) ng_hci_encryption_change_ep; 1928 1929 #define NG_HCI_EVENT_CHANGE_CON_LINK_KEY_COMPL 0x09 1930 typedef struct { 1931 u_int8_t status; /* 0x00 - success */ 1932 u_int16_t con_handle; /* Connection handle */ 1933 } __attribute__ ((packed)) ng_hci_change_con_link_key_compl_ep; 1934 1935 #define NG_HCI_EVENT_MASTER_LINK_KEY_COMPL 0x0a 1936 typedef struct { 1937 u_int8_t status; /* 0x00 - success */ 1938 u_int16_t con_handle; /* Connection handle */ 1939 u_int8_t key_flag; /* Key flag */ 1940 } __attribute__ ((packed)) ng_hci_master_link_key_compl_ep; 1941 1942 #define NG_HCI_EVENT_READ_REMOTE_FEATURES_COMPL 0x0b 1943 typedef struct { 1944 u_int8_t status; /* 0x00 - success */ 1945 u_int16_t con_handle; /* Connection handle */ 1946 u_int8_t features[NG_HCI_FEATURES_SIZE]; /* LMP features bitmsk*/ 1947 } __attribute__ ((packed)) ng_hci_read_remote_features_compl_ep; 1948 1949 #define NG_HCI_EVENT_READ_REMOTE_VER_INFO_COMPL 0x0c 1950 typedef struct { 1951 u_int8_t status; /* 0x00 - success */ 1952 u_int16_t con_handle; /* Connection handle */ 1953 u_int8_t lmp_version; /* LMP version */ 1954 u_int16_t manufacturer; /* Hardware manufacturer name */ 1955 u_int16_t lmp_subversion; /* LMP sub-version */ 1956 } __attribute__ ((packed)) ng_hci_read_remote_ver_info_compl_ep; 1957 1958 #define NG_HCI_EVENT_QOS_SETUP_COMPL 0x0d 1959 typedef struct { 1960 u_int8_t status; /* 0x00 - success */ 1961 u_int16_t con_handle; /* connection handle */ 1962 u_int8_t flags; /* reserved for future use */ 1963 u_int8_t service_type; /* service type */ 1964 u_int32_t token_rate; /* bytes per second */ 1965 u_int32_t peak_bandwidth; /* bytes per second */ 1966 u_int32_t latency; /* microseconds */ 1967 u_int32_t delay_variation; /* microseconds */ 1968 } __attribute__ ((packed)) ng_hci_qos_setup_compl_ep; 1969 1970 #define NG_HCI_EVENT_COMMAND_COMPL 0x0e 1971 typedef struct { 1972 u_int8_t num_cmd_pkts; /* # of HCI command packets */ 1973 u_int16_t opcode; /* command OpCode */ 1974 /* command return parameters (if any) */ 1975 } __attribute__ ((packed)) ng_hci_command_compl_ep; 1976 1977 #define NG_HCI_EVENT_COMMAND_STATUS 0x0f 1978 typedef struct { 1979 u_int8_t status; /* 0x00 - pending */ 1980 u_int8_t num_cmd_pkts; /* # of HCI command packets */ 1981 u_int16_t opcode; /* command OpCode */ 1982 } __attribute__ ((packed)) ng_hci_command_status_ep; 1983 1984 #define NG_HCI_EVENT_HARDWARE_ERROR 0x10 1985 typedef struct { 1986 u_int8_t hardware_code; /* hardware error code */ 1987 } __attribute__ ((packed)) ng_hci_hardware_error_ep; 1988 1989 #define NG_HCI_EVENT_FLUSH_OCCUR 0x11 1990 typedef struct { 1991 u_int16_t con_handle; /* connection handle */ 1992 } __attribute__ ((packed)) ng_hci_flush_occur_ep; 1993 1994 #define NG_HCI_EVENT_ROLE_CHANGE 0x12 1995 typedef struct { 1996 u_int8_t status; /* 0x00 - success */ 1997 bdaddr_t bdaddr; /* address of remote unit */ 1998 u_int8_t role; /* new connection role */ 1999 } __attribute__ ((packed)) ng_hci_role_change_ep; 2000 2001 #define NG_HCI_EVENT_NUM_COMPL_PKTS 0x13 2002 typedef struct { 2003 u_int8_t num_con_handles; /* # of connection handles */ 2004 /* these are repeated "num_con_handles" times 2005 u_int16_t con_handle; --- connection handle(s) 2006 u_int16_t compl_pkt; --- # of completed packets */ 2007 } __attribute__ ((packed)) ng_hci_num_compl_pkts_ep; 2008 2009 #define NG_HCI_EVENT_MODE_CHANGE 0x14 2010 typedef struct { 2011 u_int8_t status; /* 0x00 - success */ 2012 u_int16_t con_handle; /* connection handle */ 2013 u_int8_t unit_mode; /* remote unit mode */ 2014 u_int16_t interval; /* interval * 0.625 msec */ 2015 } __attribute__ ((packed)) ng_hci_mode_change_ep; 2016 2017 #define NG_HCI_EVENT_RETURN_LINK_KEYS 0x15 2018 typedef struct { 2019 u_int8_t num_keys; /* # of keys */ 2020 /* these are repeated "num_keys" times 2021 bdaddr_t bdaddr; --- remote address(es) 2022 u_int8_t key[NG_HCI_KEY_SIZE]; --- key(s) */ 2023 } __attribute__ ((packed)) ng_hci_return_link_keys_ep; 2024 2025 #define NG_HCI_EVENT_PIN_CODE_REQ 0x16 2026 typedef struct { 2027 bdaddr_t bdaddr; /* remote unit address */ 2028 } __attribute__ ((packed)) ng_hci_pin_code_req_ep; 2029 2030 #define NG_HCI_EVENT_LINK_KEY_REQ 0x17 2031 typedef struct { 2032 bdaddr_t bdaddr; /* remote unit address */ 2033 } __attribute__ ((packed)) ng_hci_link_key_req_ep; 2034 2035 #define NG_HCI_EVENT_LINK_KEY_NOTIFICATION 0x18 2036 typedef struct { 2037 bdaddr_t bdaddr; /* remote unit address */ 2038 u_int8_t key[NG_HCI_KEY_SIZE]; /* link key */ 2039 u_int8_t key_type; /* type of the key */ 2040 } __attribute__ ((packed)) ng_hci_link_key_notification_ep; 2041 2042 #define NG_HCI_EVENT_LOOPBACK_COMMAND 0x19 2043 typedef struct { 2044 u_int8_t command[0]; /* Command packet */ 2045 } __attribute__ ((packed)) ng_hci_loopback_command_ep; 2046 2047 #define NG_HCI_EVENT_DATA_BUFFER_OVERFLOW 0x1a 2048 typedef struct { 2049 u_int8_t link_type; /* Link type */ 2050 } __attribute__ ((packed)) ng_hci_data_buffer_overflow_ep; 2051 2052 #define NG_HCI_EVENT_MAX_SLOT_CHANGE 0x1b 2053 typedef struct { 2054 u_int16_t con_handle; /* connection handle */ 2055 u_int8_t lmp_max_slots; /* Max. # of slots allowed */ 2056 } __attribute__ ((packed)) ng_hci_max_slot_change_ep; 2057 2058 #define NG_HCI_EVENT_READ_CLOCK_OFFSET_COMPL 0x1c 2059 typedef struct { 2060 u_int8_t status; /* 0x00 - success */ 2061 u_int16_t con_handle; /* Connection handle */ 2062 u_int16_t clock_offset; /* Clock offset */ 2063 } __attribute__ ((packed)) ng_hci_read_clock_offset_compl_ep; 2064 2065 #define NG_HCI_EVENT_CON_PKT_TYPE_CHANGED 0x1d 2066 typedef struct { 2067 u_int8_t status; /* 0x00 - success */ 2068 u_int16_t con_handle; /* connection handle */ 2069 u_int16_t pkt_type; /* packet type */ 2070 } __attribute__ ((packed)) ng_hci_con_pkt_type_changed_ep; 2071 2072 #define NG_HCI_EVENT_QOS_VIOLATION 0x1e 2073 typedef struct { 2074 u_int16_t con_handle; /* connection handle */ 2075 } __attribute__ ((packed)) ng_hci_qos_violation_ep; 2076 2077 #define NG_HCI_EVENT_PAGE_SCAN_MODE_CHANGE 0x1f 2078 typedef struct { 2079 bdaddr_t bdaddr; /* destination address */ 2080 u_int8_t page_scan_mode; /* page scan mode */ 2081 } __attribute__ ((packed)) ng_hci_page_scan_mode_change_ep; 2082 2083 #define NG_HCI_EVENT_PAGE_SCAN_REP_MODE_CHANGE 0x20 2084 typedef struct { 2085 bdaddr_t bdaddr; /* destination address */ 2086 u_int8_t page_scan_rep_mode; /* page scan repetition mode */ 2087 } __attribute__ ((packed)) ng_hci_page_scan_rep_mode_change_ep; 2088 2089 #define NG_HCI_EVENT_IO_CAPABILITY_REQUEST 0x31 2090 typedef struct { 2091 bdaddr_t bdaddr; 2092 } __attribute__ ((packed)) ng_hci_io_capability_request_ep; 2093 2094 #define NG_HCI_EVENT_USER_CONFIRMATION_REQUEST 0x33 2095 typedef struct { 2096 bdaddr_t bdaddr; 2097 u_int32_t numeric_value; 2098 } __attribute__ ((packed)) ng_hci_user_confirmation_request_ep; 2099 2100 #define NG_HCI_EVENT_SIMPLE_PAIRING_COMPLETE 0x36 2101 typedef struct { 2102 u_int8_t status; 2103 bdaddr_t bdaddr; 2104 } __attribute__ ((packed)) ng_hci_simple_pairing_complete_ep; 2105 2106 #define NG_HCI_EVENT_LE 0x3e 2107 typedef struct { 2108 u_int8_t subevent_code; 2109 }__attribute__ ((packed)) ng_hci_le_ep; 2110 2111 #define NG_HCI_LEEV_CON_COMPL 0x01 2112 2113 typedef struct { 2114 u_int8_t status; 2115 u_int16_t handle; 2116 u_int8_t role; 2117 u_int8_t address_type; 2118 bdaddr_t address; 2119 u_int16_t interval; 2120 u_int8_t latency; 2121 u_int16_t supervision_timeout; 2122 u_int8_t master_clock_accuracy; 2123 2124 } __attribute__ ((packed)) ng_hci_le_connection_complete_ep; 2125 2126 #define NG_HCI_LEEV_ADVREP 0x02 2127 typedef struct { 2128 u_int8_t num_reports; 2129 2130 }__attribute__ ((packed)) ng_hci_le_advertising_report_ep; 2131 #define NG_HCI_SCAN_RESPONSE_DATA_MAX 0x1f 2132 2133 typedef struct { 2134 u_int8_t event_type; 2135 u_int8_t addr_type; 2136 bdaddr_t bdaddr; 2137 u_int8_t length_data; 2138 /* The last octet is for RSSI */ 2139 u_int8_t data[NG_HCI_SCAN_RESPONSE_DATA_MAX+1]; 2140 }__attribute__((packed)) ng_hci_le_advreport; 2141 2142 #define NG_HCI_LEEV_CON_UPDATE_COMPL 0x03 2143 typedef struct { 2144 u_int8_t status; 2145 u_int16_t connection_handle; 2146 u_int16_t conn_interval; 2147 u_int16_t conn_latency; 2148 u_int16_t supervision_timeout; 2149 }__attribute__((packed)) ng_hci_connection_update_complete_ep; 2150 2151 #define NG_HCI_LEEV_READ_REMOTE_FEATURES_COMPL 0x04 2152 typedef struct { 2153 u_int8_t status; 2154 u_int16_t connection_handle; 2155 u_int8_t features[NG_HCI_FEATURES_SIZE]; 2156 }__attribute__((packed)) ng_hci_le_read_remote_features_ep; 2157 2158 #define NG_HCI_LEEV_LONG_TERM_KEY_REQUEST 0x05 2159 typedef struct { 2160 u_int16_t connection_handle; 2161 u_int64_t random_number; 2162 u_int16_t encrypted_diversifier; 2163 }__attribute__((packed)) ng_hci_le_long_term_key_request_ep; 2164 2165 #define NG_HCI_LEEV_REMOTE_CONN_PARAM_REQUEST 0x06 2166 typedef struct { 2167 u_int16_t connection_handle; 2168 u_int16_t interval_min; 2169 u_int16_t interval_max; 2170 u_int16_t latency; 2171 u_int16_t timeout; 2172 }__attribute__((packed)) ng_hci_le_remote_conn_param_ep; 2173 2174 #define NG_HCI_LEEV_DATA_LENGTH_CHANGE 0x07 2175 typedef struct { 2176 u_int16_t connection_handle; 2177 u_int16_t min_tx_octets; 2178 u_int16_t max_tx_time; 2179 u_int16_t max_rx_octets; 2180 u_int16_t max_rx_time; 2181 }__attribute__((packed)) ng_hci_le_data_length_change_ep; 2182 2183 #define NG_HCI_LEEV_READ_LOCAL_P256_PK_COMPL 0x08 2184 typedef struct { 2185 u_int8_t status; 2186 u_int8_t local_p256_pk[64]; 2187 }__attribute__((packed)) ng_hci_le_read_local_p256_pk_compl_ep; 2188 2189 #define NG_HCI_LEEV_GEN_DHKEY_COMPL 0x09 2190 typedef struct { 2191 u_int8_t status; 2192 u_int8_t dh_key[32]; 2193 }__attribute__((packed)) ng_hci_le_gen_dhkey_compl_ep; 2194 2195 #define NG_HCI_LEEV_ENH_CONN_COMPL 0x0a 2196 typedef struct { 2197 u_int8_t status; 2198 u_int16_t connection_handle; 2199 u_int8_t role; 2200 u_int8_t peer_addr_type; 2201 bdaddr_t peer_addr; 2202 bdaddr_t local_res_private_addr; 2203 bdaddr_t peer_res_private_addr; 2204 u_int16_t conn_interval; 2205 u_int16_t conn_latency; 2206 u_int16_t supervision_timeout; 2207 u_int8_t master_clock_accuracy; 2208 }__attribute__((packed)) ng_hci_le_enh_conn_compl_ep; 2209 2210 #define NG_HCI_EVENT_BT_LOGO 0xfe 2211 2212 #define NG_HCI_EVENT_VENDOR 0xff 2213 2214 #endif /* ndef _NETGRAPH_HCI_H_ */ 2215