/****************************************************************************** * * Copyright (C) 1999-2012 Broadcom Corporation * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at: * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * * Changes from Qualcomm Innovation Center are provided under the following license: * * Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted (subject to the limitations in the * disclaimer below) provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following * disclaimer in the documentation and/or other materials provided * with the distribution. * * Neither the name of Qualcomm Innovation Center, Inc. nor the names of its * contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * NO EXPRESS OR IMPLIED LICENSES TO ANY PARTY'S PATENT RIGHTS ARE * GRANTED BY THIS LICENSE. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT * HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. * IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE * ******************************************************************************/ /****************************************************************************** * * This file contains function of the HCIC unit to format and send HCI * commands. * ******************************************************************************/ #include "bt_common.h" #include "bt_target.h" #include "btu.h" #include "hcidefs.h" #include "hcimsgs.h" #include #include #include #include void btsnd_hcic_ble_set_local_used_feat(uint8_t feat_set[8]) { BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE); uint8_t* pp = (uint8_t*)(p + 1); p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_SET_USED_FEAT_CMD; p->offset = 0; UINT16_TO_STREAM(pp, HCI_BLE_WRITE_LOCAL_SPT_FEAT); ARRAY_TO_STREAM(pp, feat_set, HCIC_PARAM_SIZE_SET_USED_FEAT_CMD); btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p); } void btsnd_hcic_ble_set_random_addr(const RawAddress& random_bda) { BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE); uint8_t* pp = (uint8_t*)(p + 1); p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_WRITE_RANDOM_ADDR_CMD; p->offset = 0; UINT16_TO_STREAM(pp, HCI_BLE_WRITE_RANDOM_ADDR); UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_WRITE_RANDOM_ADDR_CMD); BDADDR_TO_STREAM(pp, random_bda); btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p); } void btsnd_hcic_ble_write_adv_params(uint16_t adv_int_min, uint16_t adv_int_max, uint8_t adv_type, uint8_t addr_type_own, uint8_t addr_type_dir, const RawAddress& direct_bda, uint8_t channel_map, uint8_t adv_filter_policy) { BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE); uint8_t* pp = (uint8_t*)(p + 1); p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_BLE_WRITE_ADV_PARAMS; p->offset = 0; UINT16_TO_STREAM(pp, HCI_BLE_WRITE_ADV_PARAMS); UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_BLE_WRITE_ADV_PARAMS); UINT16_TO_STREAM(pp, adv_int_min); UINT16_TO_STREAM(pp, adv_int_max); UINT8_TO_STREAM(pp, adv_type); UINT8_TO_STREAM(pp, addr_type_own); UINT8_TO_STREAM(pp, addr_type_dir); BDADDR_TO_STREAM(pp, direct_bda); UINT8_TO_STREAM(pp, channel_map); UINT8_TO_STREAM(pp, adv_filter_policy); btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p); } void btsnd_hcic_ble_read_adv_chnl_tx_power(void) { BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE); uint8_t* pp = (uint8_t*)(p + 1); p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_READ_CMD; p->offset = 0; UINT16_TO_STREAM(pp, HCI_BLE_READ_ADV_CHNL_TX_POWER); UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_READ_CMD); btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p); } void btsnd_hcic_ble_set_adv_data(uint8_t data_len, uint8_t* p_data) { BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE); uint8_t* pp = (uint8_t*)(p + 1); p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_BLE_WRITE_ADV_DATA + 1; p->offset = 0; UINT16_TO_STREAM(pp, HCI_BLE_WRITE_ADV_DATA); UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_BLE_WRITE_ADV_DATA + 1); memset(pp, 0, HCIC_PARAM_SIZE_BLE_WRITE_ADV_DATA); if (p_data != NULL && data_len > 0) { if (data_len > HCIC_PARAM_SIZE_BLE_WRITE_ADV_DATA) data_len = HCIC_PARAM_SIZE_BLE_WRITE_ADV_DATA; UINT8_TO_STREAM(pp, data_len); ARRAY_TO_STREAM(pp, p_data, data_len); } btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p); } void btsnd_hcic_ble_set_scan_rsp_data(uint8_t data_len, uint8_t* p_scan_rsp) { BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE); uint8_t* pp = (uint8_t*)(p + 1); p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_BLE_WRITE_SCAN_RSP + 1; p->offset = 0; UINT16_TO_STREAM(pp, HCI_BLE_WRITE_SCAN_RSP_DATA); UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_BLE_WRITE_SCAN_RSP + 1); memset(pp, 0, HCIC_PARAM_SIZE_BLE_WRITE_SCAN_RSP); if (p_scan_rsp != NULL && data_len > 0) { if (data_len > HCIC_PARAM_SIZE_BLE_WRITE_SCAN_RSP) data_len = HCIC_PARAM_SIZE_BLE_WRITE_SCAN_RSP; UINT8_TO_STREAM(pp, data_len); ARRAY_TO_STREAM(pp, p_scan_rsp, data_len); } btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p); } void btsnd_hcic_ble_set_adv_enable(uint8_t adv_enable) { BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE); uint8_t* pp = (uint8_t*)(p + 1); p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_WRITE_ADV_ENABLE; p->offset = 0; UINT16_TO_STREAM(pp, HCI_BLE_WRITE_ADV_ENABLE); UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_WRITE_ADV_ENABLE); UINT8_TO_STREAM(pp, adv_enable); btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p); } void btsnd_hcic_ble_set_scan_params(uint8_t scan_type, uint16_t scan_int, uint16_t scan_win, uint8_t addr_type_own, uint8_t scan_filter_policy) { BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE); uint8_t* pp = (uint8_t*)(p + 1); p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_BLE_WRITE_SCAN_PARAM; p->offset = 0; UINT16_TO_STREAM(pp, HCI_BLE_WRITE_SCAN_PARAMS); UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_BLE_WRITE_SCAN_PARAM); UINT8_TO_STREAM(pp, scan_type); UINT16_TO_STREAM(pp, scan_int); UINT16_TO_STREAM(pp, scan_win); UINT8_TO_STREAM(pp, addr_type_own); UINT8_TO_STREAM(pp, scan_filter_policy); btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p); } void btsnd_hcic_ble_set_scan_enable(uint8_t scan_enable, uint8_t duplicate) { BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE); uint8_t* pp = (uint8_t*)(p + 1); p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_BLE_WRITE_SCAN_ENABLE; p->offset = 0; UINT16_TO_STREAM(pp, HCI_BLE_WRITE_SCAN_ENABLE); UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_BLE_WRITE_SCAN_ENABLE); UINT8_TO_STREAM(pp, scan_enable); UINT8_TO_STREAM(pp, duplicate); btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p); } /* link layer connection management commands */ void btsnd_hcic_ble_create_ll_conn( uint16_t scan_int, uint16_t scan_win, uint8_t init_filter_policy, uint8_t addr_type_peer, const RawAddress& bda_peer, uint8_t addr_type_own, uint16_t conn_int_min, uint16_t conn_int_max, uint16_t conn_latency, uint16_t conn_timeout, uint16_t min_ce_len, uint16_t max_ce_len) { BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE); uint8_t* pp = (uint8_t*)(p + 1); p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_BLE_CREATE_LL_CONN; p->offset = 0; UINT16_TO_STREAM(pp, HCI_BLE_CREATE_LL_CONN); UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_BLE_CREATE_LL_CONN); UINT16_TO_STREAM(pp, scan_int); UINT16_TO_STREAM(pp, scan_win); UINT8_TO_STREAM(pp, init_filter_policy); UINT8_TO_STREAM(pp, addr_type_peer); BDADDR_TO_STREAM(pp, bda_peer); UINT8_TO_STREAM(pp, addr_type_own); UINT16_TO_STREAM(pp, conn_int_min); UINT16_TO_STREAM(pp, conn_int_max); UINT16_TO_STREAM(pp, conn_latency); UINT16_TO_STREAM(pp, conn_timeout); UINT16_TO_STREAM(pp, min_ce_len); UINT16_TO_STREAM(pp, max_ce_len); btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p); } void btsnd_hcic_ble_create_conn_cancel(void) { BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE); uint8_t* pp = (uint8_t*)(p + 1); p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_BLE_CREATE_CONN_CANCEL; p->offset = 0; UINT16_TO_STREAM(pp, HCI_BLE_CREATE_CONN_CANCEL); UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_BLE_CREATE_CONN_CANCEL); btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p); } void btsnd_hcic_ble_clear_white_list( base::Callback cb) { btu_hcif_send_cmd_with_cb(FROM_HERE, HCI_BLE_CLEAR_WHITE_LIST, nullptr, 0, std::move(cb)); } void btsnd_hcic_ble_add_white_list( uint8_t addr_type, const RawAddress& bda, base::Callback cb) { uint8_t param[HCIC_PARAM_SIZE_ADD_WHITE_LIST]; uint8_t* pp = param; UINT8_TO_STREAM(pp, addr_type); BDADDR_TO_STREAM(pp, bda); btu_hcif_send_cmd_with_cb(FROM_HERE, HCI_BLE_ADD_WHITE_LIST, param, HCIC_PARAM_SIZE_ADD_WHITE_LIST, std::move(cb)); } void btsnd_hcic_ble_remove_from_white_list( uint8_t addr_type, const RawAddress& bda, base::Callback cb) { uint8_t param[HCIC_PARAM_SIZE_REMOVE_WHITE_LIST]; uint8_t* pp = param; UINT8_TO_STREAM(pp, addr_type); BDADDR_TO_STREAM(pp, bda); btu_hcif_send_cmd_with_cb(FROM_HERE, HCI_BLE_REMOVE_WHITE_LIST, param, HCIC_PARAM_SIZE_REMOVE_WHITE_LIST, std::move(cb)); } void btsnd_hcic_ble_upd_ll_conn_params(uint16_t handle, uint16_t conn_int_min, uint16_t conn_int_max, uint16_t conn_latency, uint16_t conn_timeout, uint16_t min_ce_len, uint16_t max_ce_len) { BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE); uint8_t* pp = (uint8_t*)(p + 1); p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_BLE_UPD_LL_CONN_PARAMS; p->offset = 0; UINT16_TO_STREAM(pp, HCI_BLE_UPD_LL_CONN_PARAMS); UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_BLE_UPD_LL_CONN_PARAMS); UINT16_TO_STREAM(pp, handle); UINT16_TO_STREAM(pp, conn_int_min); UINT16_TO_STREAM(pp, conn_int_max); UINT16_TO_STREAM(pp, conn_latency); UINT16_TO_STREAM(pp, conn_timeout); UINT16_TO_STREAM(pp, min_ce_len); UINT16_TO_STREAM(pp, max_ce_len); btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p); } void btsnd_hcic_ble_set_host_chnl_class( uint8_t chnl_map[HCIC_BLE_CHNL_MAP_SIZE]) { BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE); uint8_t* pp = (uint8_t*)(p + 1); p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_SET_HOST_CHNL_CLASS; p->offset = 0; UINT16_TO_STREAM(pp, HCI_BLE_SET_HOST_CHNL_CLASS); UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_SET_HOST_CHNL_CLASS); ARRAY_TO_STREAM(pp, chnl_map, HCIC_BLE_CHNL_MAP_SIZE); btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p); } void btsnd_hcic_ble_read_chnl_map(uint16_t handle) { BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE); uint8_t* pp = (uint8_t*)(p + 1); p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_READ_CHNL_MAP; p->offset = 0; UINT16_TO_STREAM(pp, HCI_BLE_READ_CHNL_MAP); UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_READ_CHNL_MAP); UINT16_TO_STREAM(pp, handle); btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p); } void btsnd_hcic_ble_read_remote_feat(uint16_t handle) { BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE); uint8_t* pp = (uint8_t*)(p + 1); p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_BLE_READ_REMOTE_FEAT; p->offset = 0; UINT16_TO_STREAM(pp, HCI_BLE_READ_REMOTE_FEAT); UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_BLE_READ_REMOTE_FEAT); UINT16_TO_STREAM(pp, handle); btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p); } /* security management commands */ void btsnd_hcic_ble_encrypt(uint8_t* key, uint8_t key_len, uint8_t* plain_text, uint8_t pt_len, void* p_cmd_cplt_cback) { BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE); uint8_t* pp = (uint8_t*)(p + 1); p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_BLE_ENCRYPT; p->offset = sizeof(void*); *((void**)pp) = p_cmd_cplt_cback; /* Store command complete callback in buffer */ pp += sizeof(void*); /* Skip over callback pointer */ UINT16_TO_STREAM(pp, HCI_BLE_ENCRYPT); UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_BLE_ENCRYPT); memset(pp, 0, HCIC_PARAM_SIZE_BLE_ENCRYPT); if (key_len > HCIC_BLE_ENCRYT_KEY_SIZE) key_len = HCIC_BLE_ENCRYT_KEY_SIZE; if (pt_len > HCIC_BLE_ENCRYT_KEY_SIZE) pt_len = HCIC_BLE_ENCRYT_KEY_SIZE; ARRAY_TO_STREAM(pp, key, key_len); pp += (HCIC_BLE_ENCRYT_KEY_SIZE - key_len); ARRAY_TO_STREAM(pp, plain_text, pt_len); btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p); } void btsnd_hcic_ble_rand(base::Callback cb) { btu_hcif_send_cmd_with_cb(FROM_HERE, HCI_BLE_RAND, nullptr, 0, base::Bind( [](base::Callback cb, uint8_t* param, uint16_t param_len) { CHECK(param[0] == 0) << "LE Rand return status must be zero"; cb.Run(param + 1 /* skip status */); }, std::move(cb))); } void btsnd_hcic_ble_start_enc(uint16_t handle, uint8_t rand[HCIC_BLE_RAND_DI_SIZE], uint16_t ediv, const Octet16& ltk) { BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE); uint8_t* pp = (uint8_t*)(p + 1); p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_BLE_START_ENC; p->offset = 0; UINT16_TO_STREAM(pp, HCI_BLE_START_ENC); UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_BLE_START_ENC); UINT16_TO_STREAM(pp, handle); ARRAY_TO_STREAM(pp, rand, HCIC_BLE_RAND_DI_SIZE); UINT16_TO_STREAM(pp, ediv); ARRAY_TO_STREAM(pp, ltk.data(), HCIC_BLE_ENCRYT_KEY_SIZE); btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p); } void btsnd_hcic_ble_ltk_req_reply(uint16_t handle, const Octet16& ltk) { BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE); uint8_t* pp = (uint8_t*)(p + 1); p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_LTK_REQ_REPLY; p->offset = 0; UINT16_TO_STREAM(pp, HCI_BLE_LTK_REQ_REPLY); UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_LTK_REQ_REPLY); UINT16_TO_STREAM(pp, handle); ARRAY_TO_STREAM(pp, ltk.data(), HCIC_BLE_ENCRYT_KEY_SIZE); btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p); } void btsnd_hcic_ble_ltk_req_neg_reply(uint16_t handle) { BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE); uint8_t* pp = (uint8_t*)(p + 1); p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_LTK_REQ_NEG_REPLY; p->offset = 0; UINT16_TO_STREAM(pp, HCI_BLE_LTK_REQ_NEG_REPLY); UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_LTK_REQ_NEG_REPLY); UINT16_TO_STREAM(pp, handle); btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p); } void btsnd_hcic_ble_receiver_test(uint8_t rx_freq) { BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE); uint8_t* pp = (uint8_t*)(p + 1); p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_WRITE_PARAM1; p->offset = 0; UINT16_TO_STREAM(pp, HCI_BLE_RECEIVER_TEST); UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_WRITE_PARAM1); UINT8_TO_STREAM(pp, rx_freq); btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p); } void btsnd_hcic_ble_transmitter_test(uint8_t tx_freq, uint8_t test_data_len, uint8_t payload) { BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE); uint8_t* pp = (uint8_t*)(p + 1); p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_WRITE_PARAM3; p->offset = 0; UINT16_TO_STREAM(pp, HCI_BLE_TRANSMITTER_TEST); UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_WRITE_PARAM3); UINT8_TO_STREAM(pp, tx_freq); UINT8_TO_STREAM(pp, test_data_len); UINT8_TO_STREAM(pp, payload); btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p); } void btsnd_hcic_ble_test_end(void) { BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE); uint8_t* pp = (uint8_t*)(p + 1); p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_READ_CMD; p->offset = 0; UINT16_TO_STREAM(pp, HCI_BLE_TEST_END); UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_READ_CMD); btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p); } void btsnd_hcic_ble_read_host_supported(void) { BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE); uint8_t* pp = (uint8_t*)(p + 1); p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_READ_CMD; p->offset = 0; UINT16_TO_STREAM(pp, HCI_READ_LE_HOST_SUPPORT); UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_READ_CMD); btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p); } #if (BLE_LLT_INCLUDED == TRUE) void btsnd_hcic_ble_rc_param_req_reply(uint16_t handle, uint16_t conn_int_min, uint16_t conn_int_max, uint16_t conn_latency, uint16_t conn_timeout, uint16_t min_ce_len, uint16_t max_ce_len) { BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE); uint8_t* pp = (uint8_t*)(p + 1); p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_BLE_RC_PARAM_REQ_REPLY; p->offset = 0; UINT16_TO_STREAM(pp, HCI_BLE_RC_PARAM_REQ_REPLY); UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_BLE_RC_PARAM_REQ_REPLY); UINT16_TO_STREAM(pp, handle); UINT16_TO_STREAM(pp, conn_int_min); UINT16_TO_STREAM(pp, conn_int_max); UINT16_TO_STREAM(pp, conn_latency); UINT16_TO_STREAM(pp, conn_timeout); UINT16_TO_STREAM(pp, min_ce_len); UINT16_TO_STREAM(pp, max_ce_len); btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p); } void btsnd_hcic_ble_rc_param_req_neg_reply(uint16_t handle, uint8_t reason) { BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE); uint8_t* pp = (uint8_t*)(p + 1); p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_BLE_RC_PARAM_REQ_NEG_REPLY; p->offset = 0; UINT16_TO_STREAM(pp, HCI_BLE_RC_PARAM_REQ_NEG_REPLY); UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_BLE_RC_PARAM_REQ_NEG_REPLY); UINT16_TO_STREAM(pp, handle); UINT8_TO_STREAM(pp, reason); btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p); } #endif void btsnd_hcic_ble_add_device_resolving_list(uint8_t addr_type_peer, const RawAddress& bda_peer, const Octet16& irk_peer, const Octet16& irk_local) { BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE); uint8_t* pp = (uint8_t*)(p + 1); p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_BLE_ADD_DEV_RESOLVING_LIST; p->offset = 0; UINT16_TO_STREAM(pp, HCI_BLE_ADD_DEV_RESOLVING_LIST); UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_BLE_ADD_DEV_RESOLVING_LIST); UINT8_TO_STREAM(pp, addr_type_peer); BDADDR_TO_STREAM(pp, bda_peer); ARRAY_TO_STREAM(pp, irk_peer.data(), HCIC_BLE_ENCRYT_KEY_SIZE); ARRAY_TO_STREAM(pp, irk_local.data(), HCIC_BLE_ENCRYT_KEY_SIZE); btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p); } void btsnd_hcic_ble_rm_device_resolving_list(uint8_t addr_type_peer, const RawAddress& bda_peer) { BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE); uint8_t* pp = (uint8_t*)(p + 1); p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_BLE_RM_DEV_RESOLVING_LIST; p->offset = 0; UINT16_TO_STREAM(pp, HCI_BLE_RM_DEV_RESOLVING_LIST); UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_BLE_RM_DEV_RESOLVING_LIST); UINT8_TO_STREAM(pp, addr_type_peer); BDADDR_TO_STREAM(pp, bda_peer); btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p); } void btsnd_hcic_ble_set_privacy_mode(uint8_t addr_type_peer, const RawAddress& bda_peer, uint8_t privacy_type) { BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE); uint8_t* pp = (uint8_t*)(p + 1); p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_BLE_SET_PRIVACY_MODE; p->offset = 0; UINT16_TO_STREAM(pp, HCI_BLE_SET_PRIVACY_MODE); UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_BLE_SET_PRIVACY_MODE); UINT8_TO_STREAM(pp, addr_type_peer); BDADDR_TO_STREAM(pp, bda_peer); UINT8_TO_STREAM(pp, privacy_type); btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p); } void btsnd_hcic_ble_clear_resolving_list(void) { BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE); uint8_t* pp = (uint8_t*)(p + 1); p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_BLE_CLEAR_RESOLVING_LIST; p->offset = 0; UINT16_TO_STREAM(pp, HCI_BLE_CLEAR_RESOLVING_LIST); UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_BLE_CLEAR_RESOLVING_LIST); btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p); } void btsnd_hcic_ble_read_resolvable_addr_peer(uint8_t addr_type_peer, const RawAddress& bda_peer) { BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE); uint8_t* pp = (uint8_t*)(p + 1); p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_BLE_READ_RESOLVABLE_ADDR_PEER; p->offset = 0; UINT16_TO_STREAM(pp, HCI_BLE_READ_RESOLVABLE_ADDR_PEER); UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_BLE_READ_RESOLVABLE_ADDR_PEER); UINT8_TO_STREAM(pp, addr_type_peer); BDADDR_TO_STREAM(pp, bda_peer); btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p); } void btsnd_hcic_ble_read_resolvable_addr_local(uint8_t addr_type_peer, const RawAddress& bda_peer) { BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE); uint8_t* pp = (uint8_t*)(p + 1); p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_BLE_READ_RESOLVABLE_ADDR_LOCAL; p->offset = 0; UINT16_TO_STREAM(pp, HCI_BLE_READ_RESOLVABLE_ADDR_LOCAL); UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_BLE_READ_RESOLVABLE_ADDR_LOCAL); UINT8_TO_STREAM(pp, addr_type_peer); BDADDR_TO_STREAM(pp, bda_peer); btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p); } void btsnd_hcic_ble_set_addr_resolution_enable(uint8_t addr_resolution_enable) { BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE); uint8_t* pp = (uint8_t*)(p + 1); p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_BLE_SET_ADDR_RESOLUTION_ENABLE; p->offset = 0; UINT16_TO_STREAM(pp, HCI_BLE_SET_ADDR_RESOLUTION_ENABLE); UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_BLE_SET_ADDR_RESOLUTION_ENABLE); UINT8_TO_STREAM(pp, addr_resolution_enable); btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p); } void btsnd_hcic_ble_set_rand_priv_addr_timeout(uint16_t rpa_timout) { BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE); uint8_t* pp = (uint8_t*)(p + 1); p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_BLE_SET_RAND_PRIV_ADDR_TIMOUT; p->offset = 0; UINT16_TO_STREAM(pp, HCI_BLE_SET_RAND_PRIV_ADDR_TIMOUT); UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_BLE_SET_RAND_PRIV_ADDR_TIMOUT); UINT16_TO_STREAM(pp, rpa_timout); btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p); } void btsnd_hcic_ble_set_data_length(uint16_t conn_handle, uint16_t tx_octets, uint16_t tx_time) { BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE); uint8_t* pp = (uint8_t*)(p + 1); p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_BLE_SET_DATA_LENGTH; p->offset = 0; UINT16_TO_STREAM(pp, HCI_BLE_SET_DATA_LENGTH); UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_BLE_SET_DATA_LENGTH); UINT16_TO_STREAM(pp, conn_handle); UINT16_TO_STREAM(pp, tx_octets); UINT16_TO_STREAM(pp, tx_time); btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p); } void btsnd_hcic_ble_enh_rx_test(uint8_t rx_chan, uint8_t phy, uint8_t mod_index) { BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE); uint8_t* pp = (uint8_t*)(p + 1); p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_BLE_ENH_RX_TEST; p->offset = 0; UINT16_TO_STREAM(pp, HCI_BLE_ENH_RECEIVER_TEST); UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_BLE_ENH_RX_TEST); UINT8_TO_STREAM(pp, rx_chan); UINT8_TO_STREAM(pp, phy); UINT8_TO_STREAM(pp, mod_index); btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p); } void btsnd_hcic_ble_enh_tx_test(uint8_t tx_chan, uint8_t data_len, uint8_t payload, uint8_t phy) { BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE); uint8_t* pp = (uint8_t*)(p + 1); p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_BLE_ENH_TX_TEST; p->offset = 0; UINT16_TO_STREAM(pp, HCI_BLE_ENH_TRANSMITTER_TEST); UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_BLE_ENH_TX_TEST); UINT8_TO_STREAM(pp, tx_chan); UINT8_TO_STREAM(pp, data_len); UINT8_TO_STREAM(pp, payload); UINT8_TO_STREAM(pp, phy); btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p); } void btsnd_hcic_ble_set_extended_scan_params(uint8_t own_address_type, uint8_t scanning_filter_policy, uint8_t scanning_phys, scanning_phy_cfg* phy_cfg) { BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE); uint8_t* pp = (uint8_t*)(p + 1); int phy_cnt = std::bitset::digits>(scanning_phys).count(); uint16_t param_len = 3 + (5 * phy_cnt); p->len = HCIC_PREAMBLE_SIZE + param_len; p->offset = 0; UINT16_TO_STREAM(pp, HCI_LE_SET_EXTENDED_SCAN_PARAMETERS); UINT8_TO_STREAM(pp, param_len); UINT8_TO_STREAM(pp, own_address_type); UINT8_TO_STREAM(pp, scanning_filter_policy); UINT8_TO_STREAM(pp, scanning_phys); for (int i = 0; i < phy_cnt; i++) { UINT8_TO_STREAM(pp, phy_cfg[i].scan_type); UINT16_TO_STREAM(pp, phy_cfg[i].scan_int); UINT16_TO_STREAM(pp, phy_cfg[i].scan_win); } btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p); } void btsnd_hcic_ble_set_extended_scan_enable(uint8_t enable, uint8_t filter_duplicates, uint16_t duration, uint16_t period) { BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE); uint8_t* pp = (uint8_t*)(p + 1); const int param_len = 6; p->len = HCIC_PREAMBLE_SIZE + param_len; p->offset = 0; UINT16_TO_STREAM(pp, HCI_LE_SET_EXTENDED_SCAN_ENABLE); UINT8_TO_STREAM(pp, param_len); UINT8_TO_STREAM(pp, enable); UINT8_TO_STREAM(pp, filter_duplicates); UINT16_TO_STREAM(pp, duration); UINT16_TO_STREAM(pp, period); btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p); } void btsnd_hcic_ble_ext_create_conn(uint8_t init_filter_policy, uint8_t addr_type_own, uint8_t addr_type_peer, const RawAddress& bda_peer, uint8_t initiating_phys, EXT_CONN_PHY_CFG* phy_cfg) { BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE); uint8_t* pp = (uint8_t*)(p + 1); int phy_cnt = std::bitset::digits>(initiating_phys) .count(); /* param_len = initial_params + size_per_channel * num_of_channels */ uint8_t param_len = 10 + (16 * phy_cnt); p->len = HCIC_PREAMBLE_SIZE + param_len; p->offset = 0; UINT16_TO_STREAM(pp, HCI_LE_EXTENDED_CREATE_CONNECTION); UINT8_TO_STREAM(pp, param_len); UINT8_TO_STREAM(pp, init_filter_policy); UINT8_TO_STREAM(pp, addr_type_own); UINT8_TO_STREAM(pp, addr_type_peer); BDADDR_TO_STREAM(pp, bda_peer); UINT8_TO_STREAM(pp, initiating_phys); for (int i = 0; i < phy_cnt; i++) { UINT16_TO_STREAM(pp, phy_cfg[i].scan_int); UINT16_TO_STREAM(pp, phy_cfg[i].scan_win); UINT16_TO_STREAM(pp, phy_cfg[i].conn_int_min); UINT16_TO_STREAM(pp, phy_cfg[i].conn_int_max); UINT16_TO_STREAM(pp, phy_cfg[i].conn_latency); UINT16_TO_STREAM(pp, phy_cfg[i].sup_timeout); UINT16_TO_STREAM(pp, phy_cfg[i].min_ce_len); UINT16_TO_STREAM(pp, phy_cfg[i].max_ce_len); } btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p); } void btsnd_hcic_ble_set_cig_param(uint8_t cig_id, const SDU_INTERVAL sdu_int_m_to_s, const SDU_INTERVAL sdu_int_s_to_m, uint8_t slave_clock_accuracy, uint8_t packing, uint8_t framing, uint16_t max_transport_latency_m_to_s, uint16_t max_transport_latency_s_to_m, uint8_t cis_count, std::vector cis_config, base::Callback cb) { uint16_t param_len = HCI_PARAM_SIZE_SET_CIG_PARAM_FIXED + (cis_count * sizeof(uint16_t) * 2) /* size of arrays which has 2 octet size elements*/ + (cis_count * sizeof(uint8_t) * 5); /* size of arrays which has 1 octet size elements*/ uint8_t *param = (uint8_t *)osi_malloc(param_len); uint8_t *p = param; UINT8_TO_STREAM(p, cig_id); ARRAY_TO_STREAM(p, sdu_int_m_to_s, SDU_INTERVAL_LEN); ARRAY_TO_STREAM(p, sdu_int_s_to_m, SDU_INTERVAL_LEN); UINT8_TO_STREAM(p, slave_clock_accuracy); UINT8_TO_STREAM(p, packing); UINT8_TO_STREAM(p, framing); UINT16_TO_STREAM(p, max_transport_latency_m_to_s); UINT16_TO_STREAM(p, max_transport_latency_s_to_m); UINT8_TO_STREAM(p, cis_count); for (int i = 0; i < cis_count; i++) { UINT8_TO_STREAM(p, cis_config[i].cis_id); UINT16_TO_STREAM(p, cis_config[i].max_sdu_m_to_s); UINT16_TO_STREAM(p, cis_config[i].max_sdu_s_to_m); UINT8_TO_STREAM(p, cis_config[i].phy_m_to_s); UINT8_TO_STREAM(p, cis_config[i].phy_s_to_m); UINT8_TO_STREAM(p, cis_config[i].rtn_m_to_s); UINT8_TO_STREAM(p, cis_config[i].rtn_s_to_m); } btu_hcif_send_cmd_with_cb(FROM_HERE, HCI_BLE_SET_CIG_PARAM, param, param_len, std::move(cb)); } void btsnd_hcic_ble_create_cis(uint8_t cis_count, std::vector link_conn_handles, base::Callback cb) { uint16_t param_len = 1 + (cis_count * sizeof(uint16_t) * 2); /* size of arrays which has 2 octet size elements*/ uint8_t *param = (uint8_t *)osi_malloc(param_len); uint8_t *p = param; UINT8_TO_STREAM(p, cis_count); for (int i = 0; i < cis_count; i++) { UINT16_TO_STREAM(p, link_conn_handles[i].cis_conn_handle); UINT16_TO_STREAM(p, link_conn_handles[i].acl_conn_handle); } btu_hcif_send_cmd_with_cb(FROM_HERE, HCI_BLE_CREATE_CIS, param, param_len, std::move(cb)); } void btsnd_hcic_ble_remove_cig(uint8_t cig_id, base::Callback cb) { uint16_t param_len = 1; uint8_t *param = (uint8_t *)osi_malloc(param_len); uint8_t *p = param; UINT8_TO_STREAM(p, cig_id); btu_hcif_send_cmd_with_cb(FROM_HERE, HCI_BLE_REMOVE_CIG, param, param_len, std::move(cb)); } void btsnd_hcic_ble_set_iso_data_path(uint16_t connection_handle, uint8_t data_path_direction, uint8_t data_path_id, const CODEC_ID codec_id, const CONTROLLER_DELAY cont_delay, uint8_t codec_configuration_length, uint8_t* codec_configuration, base::Callback cb) { uint16_t param_len = HCI_PARAM_SIZE_SET_ISO_DATA_PATH + codec_configuration_length; uint8_t *param = (uint8_t *)osi_malloc(param_len); uint8_t *p = param; UINT16_TO_STREAM(p, connection_handle); UINT8_TO_STREAM(p, data_path_direction); UINT8_TO_STREAM(p, data_path_id); ARRAY_TO_STREAM(p, codec_id, CODEC_ID_LEN); ARRAY_TO_STREAM(p, cont_delay, CONTROLLER_DELAY_LEN); UINT8_TO_STREAM(p, codec_configuration_length); ARRAY_TO_STREAM(p, codec_configuration, codec_configuration_length); btu_hcif_send_cmd_with_cb(FROM_HERE, HCI_BLE_SET_ISO_DATAPATH, param, param_len, std::move(cb)); } void btsnd_hcic_ble_remove_iso_data_path(uint16_t connection_handle, uint8_t data_path_direction, base::Callback cb) { uint16_t param_len = HCI_PARAM_SIZE_REMOVE_ISO_DATA_PATH; uint8_t *param = (uint8_t *)osi_malloc(param_len); uint8_t *p = param; UINT16_TO_STREAM(p, connection_handle); UINT8_TO_STREAM(p, data_path_direction); btu_hcif_send_cmd_with_cb(FROM_HERE, HCI_BLE_REMOVE_ISO_DATAPATH, param, param_len, std::move(cb)); } void btsnd_hcic_ble_set_host_feature(uint8_t bit_number, uint8_t bit_val, base::Callback cb) { int16_t param_len = HCI_PARAM_SIZE_SET_BLE_HOST_FEATURE; uint8_t *param = (uint8_t *)osi_malloc(param_len); uint8_t *p = param; UINT8_TO_STREAM(p, bit_number); UINT8_TO_STREAM(p, bit_val); btu_hcif_send_cmd_with_cb(FROM_HERE, HCI_BLE_SET_HOST_FEATURE, param, param_len, std::move(cb)); } void btsnd_hcic_ble_req_peer_sca(uint16_t conn_handle) { BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE); uint8_t* pp = (uint8_t*)(p + 1); const uint16_t param_len = 2; p->len = HCIC_PREAMBLE_SIZE + param_len; p->offset = 0; UINT16_TO_STREAM(pp, HCI_BLE_REQUEST_PEER_SCA); UINT8_TO_STREAM(pp, param_len); UINT16_TO_STREAM(pp, conn_handle); btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p); } void btsnd_hcic_ble_accept_cis(uint16_t conn_handle) { BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE); uint8_t* pp = (uint8_t*)(p + 1); const int param_len = 2; p->len = HCIC_PREAMBLE_SIZE + param_len; p->offset = 0; UINT16_TO_STREAM(pp, HCI_BLE_ACCEPT_CIS_REQ); UINT8_TO_STREAM(pp, param_len); UINT16_TO_STREAM(pp, conn_handle); btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p); } void btsnd_hcic_ble_reject_cis(uint16_t conn_handle, uint8_t reason, base::Callback cb) { const uint16_t param_len = 3; uint8_t *param = (uint8_t *)osi_malloc(param_len); uint8_t *p = param; UINT8_TO_STREAM(p, conn_handle); UINT8_TO_STREAM(p, reason); btu_hcif_send_cmd_with_cb(FROM_HERE, HCI_BLE_REJECT_CIS_REQ, param, param_len, std::move(cb)); } // void btsnd_hcic_ble_read_iso_tx_sync(uint16_t conn_handle, base::Callback cb) { const uint16_t param_len = 2; uint8_t *param = (uint8_t *)osi_malloc(param_len); uint8_t *p = param; UINT16_TO_STREAM(p, conn_handle); btu_hcif_send_cmd_with_cb(FROM_HERE, HCI_BLE_READ_ISO_TX_SYNC, param, param_len, std::move(cb)); } void btsnd_hcic_ble_read_iso_link_quality(uint16_t conn_handle, base::Callback cb) { const uint16_t param_len = 2; uint8_t *param = (uint8_t *)osi_malloc(param_len); uint8_t *p = param; UINT16_TO_STREAM(p, conn_handle); btu_hcif_send_cmd_with_cb(FROM_HERE, HCI_BLE_READ_ISO_LINK_QUALITY, param, param_len, std::move(cb)); } void btsnd_hcic_ble_read_enhanced_pow_level(uint16_t conn_handle, uint8_t phy, base::Callback cb) { const uint16_t param_len = 3; uint8_t *param = (uint8_t *)osi_malloc(param_len); uint8_t *p = param; UINT16_TO_STREAM(p, conn_handle); UINT8_TO_STREAM(p, phy); btu_hcif_send_cmd_with_cb(FROM_HERE, HCI_BLE_ENH_READ_TRANSMIT_POW_LEVEL, param, param_len, std::move(cb)); } void btsnd_hcic_ble_read_remote_tx_pow_level(uint16_t conn_handle, uint8_t phy) { BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE); uint8_t* pp = (uint8_t*)(p + 1); uint16_t param_len = 3; /* size of arrays which has 2 octet size elements*/ p->len = HCIC_PREAMBLE_SIZE + param_len; p->offset = 0; UINT16_TO_STREAM(pp, HCI_BLE_READ_REM_TRANSMIT_POW_LEVEL); UINT8_TO_STREAM(pp, param_len); UINT16_TO_STREAM(pp, conn_handle); UINT8_TO_STREAM(pp, phy); btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p); } void btsnd_hcic_ble_set_path_loss_prt_param(uint16_t conn_handle, uint8_t high_threshold, uint8_t high_hysteresis, uint8_t low_threshold, uint8_t low_hysteresis, uint16_t min_time_spent, base::Callback cb) { const uint16_t param_len = 8; uint8_t *param = (uint8_t *)osi_malloc(param_len); uint8_t *p = param; UINT16_TO_STREAM(p, conn_handle); UINT8_TO_STREAM(p, high_threshold); UINT8_TO_STREAM(p, high_hysteresis); UINT8_TO_STREAM(p, low_threshold); UINT8_TO_STREAM(p, low_hysteresis); UINT16_TO_STREAM(p, min_time_spent); btu_hcif_send_cmd_with_cb(FROM_HERE, HCI_BLE_SET_PATH_LOSS_RPT_PARAM, param, param_len, std::move(cb)); } void btsnd_hcic_ble_set_path_loss_rpt_enable(uint16_t conn_handle, uint8_t enable, base::Callback cb) { const uint16_t param_len = 3; uint8_t *param = (uint8_t *)osi_malloc(param_len); uint8_t *p = param; UINT16_TO_STREAM(p, conn_handle); UINT8_TO_STREAM(p, enable); btu_hcif_send_cmd_with_cb(FROM_HERE, HCI_BLE_SET_PATH_LOSS_RPT_ENABLE, param, param_len, std::move(cb)); } void btsnd_hcic_ble_set_tx_pow_rpt_enable(uint16_t conn_handle, uint8_t local_enable, uint8_t remote_enable, base::Callback cb) { const uint16_t param_len = 4; uint8_t *param = (uint8_t *)osi_malloc(param_len); uint8_t *p = param; UINT16_TO_STREAM(p, conn_handle); UINT8_TO_STREAM(p, local_enable); UINT8_TO_STREAM(p, remote_enable); btu_hcif_send_cmd_with_cb(FROM_HERE, HCI_BLE_SET_TRANSMIT_POW_RPT_ENABLE, param, param_len, std::move(cb)); } // Test ISO HCI Commands void btsnd_hcic_ble_set_cig_param_test(uint8_t cig_id, const SDU_INTERVAL sdu_int_m_to_s, const SDU_INTERVAL sdu_int_s_to_m, uint8_t ft_m_to_s, uint8_t ft_s_to_m, uint16_t iso_interval, uint8_t slave_clock_accuracy, uint8_t packing, uint8_t framing, uint8_t cis_count, std::vector cis_config, base::Callback cb) { uint16_t param_len = HCI_PARAM_SIZE_SET_CIG_PARAM_TEST_FIXED + (cis_count * sizeof(uint16_t) * 4) + (cis_count * sizeof(uint8_t) * 6); uint8_t *param = (uint8_t *)osi_malloc(param_len); uint8_t *p = param; UINT8_TO_STREAM(p, cig_id); ARRAY_TO_STREAM(p, sdu_int_m_to_s, SDU_INTERVAL_LEN); ARRAY_TO_STREAM(p, sdu_int_s_to_m, SDU_INTERVAL_LEN); UINT8_TO_STREAM(p, ft_m_to_s); UINT8_TO_STREAM(p, ft_s_to_m); UINT16_TO_STREAM(p, iso_interval); UINT8_TO_STREAM(p, slave_clock_accuracy); UINT8_TO_STREAM(p, packing); UINT8_TO_STREAM(p, framing); UINT8_TO_STREAM(p, cis_count); for (int i = 0; i < cis_count; i++) { UINT8_TO_STREAM(p, cis_config[i].cis_id); UINT8_TO_STREAM(p, cis_config[i].nse); UINT16_TO_STREAM(p, cis_config[i].max_sdu_m_to_s); UINT16_TO_STREAM(p, cis_config[i].max_sdu_s_to_m); UINT16_TO_STREAM(p, cis_config[i].max_pdu_m_to_s); UINT16_TO_STREAM(p, cis_config[i].max_pdu_s_to_m); UINT8_TO_STREAM(p, cis_config[i].phy_m_to_s); UINT8_TO_STREAM(p, cis_config[i].phy_s_to_m); UINT8_TO_STREAM(p, cis_config[i].bn_m_to_s); UINT8_TO_STREAM(p, cis_config[i].bn_s_to_m); } btu_hcif_send_cmd_with_cb(FROM_HERE, HCI_BLE_SET_CIG_PARAM_TEST, param, param_len, std::move(cb)); } void btsnd_hcic_ble_iso_transmit_test(uint16_t conn_handle, uint8_t payload_type, base::Callback cb) { const uint16_t param_len = 3; uint8_t *param = (uint8_t *)osi_malloc(param_len); uint8_t *p = param; UINT16_TO_STREAM(p, conn_handle); UINT8_TO_STREAM(p, payload_type); btu_hcif_send_cmd_with_cb(FROM_HERE, HCI_BLE_ISO_TRANSMIT_TEST, param, param_len, std::move(cb)); } void btsnd_hcic_ble_iso_receive_test(uint16_t conn_handle, uint8_t payload_type, base::Callback cb) { const uint16_t param_len = 3; uint8_t *param = (uint8_t *)osi_malloc(param_len); uint8_t *p = param; UINT16_TO_STREAM(p, conn_handle); UINT8_TO_STREAM(p, payload_type); btu_hcif_send_cmd_with_cb(FROM_HERE, HCI_BLE_ISO_RECEIVE_TEST, param, param_len, std::move(cb)); } void btsnd_hcic_ble_iso_read_test_counters(uint16_t conn_handle, base::Callback cb) { const uint16_t param_len = 2; uint8_t *param = (uint8_t *)osi_malloc(param_len); uint8_t *p = param; UINT16_TO_STREAM(p, conn_handle); btu_hcif_send_cmd_with_cb(FROM_HERE, HCI_BLE_ISO_READ_TEST_COUNTERS, param, param_len, std::move(cb)); } void btsnd_hcic_ble_iso_test_end(uint16_t conn_handle, base::Callback cb) { const uint16_t param_len = 2; uint8_t *param = (uint8_t *)osi_malloc(param_len); uint8_t *p = param; UINT16_TO_STREAM(p, conn_handle); btu_hcif_send_cmd_with_cb(FROM_HERE, HCI_BLE_ISO_TEST_END, param, param_len, std::move(cb)); } void btsnd_hcic_ble_transmitter_test_v4(uint8_t tx_channel, uint8_t test_data_length, uint8_t packet_payload, uint8_t phy, uint8_t cte_length, uint8_t type, uint8_t switching_pattern_length, uint8_t *antenna_ids, uint8_t transmit_power_level, base::Callback cb) { const uint16_t param_len = 8 + switching_pattern_length; uint8_t *param = (uint8_t *)osi_malloc(param_len); uint8_t *p = param; UINT8_TO_STREAM(p, tx_channel); UINT8_TO_STREAM(p, test_data_length); UINT8_TO_STREAM(p, packet_payload); UINT8_TO_STREAM(p, phy); UINT8_TO_STREAM(p, cte_length); UINT8_TO_STREAM(p, type); UINT8_TO_STREAM(p, switching_pattern_length); ARRAY_TO_STREAM(p, antenna_ids, switching_pattern_length); UINT8_TO_STREAM(p, transmit_power_level); btu_hcif_send_cmd_with_cb(FROM_HERE, HCI_BLE_TRANSMITTER_TEST_V4, param, param_len, std::move(cb)); } void btsnd_hcic_ble_create_periodic_sync(uint8_t options, uint8_t adv_sid, uint8_t address_type, const RawAddress& bda_peer, uint16_t skip, uint16_t sync_tout, uint8_t sync_cte_type) { BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE); uint8_t* pp = (uint8_t*)(p + 1); const uint16_t param_len = 14; p->len = HCIC_PREAMBLE_SIZE + param_len; p->offset = 0; UINT16_TO_STREAM(pp, HCI_LE_PERIODIC_ADVERTISING_CREATE_SYNC); UINT8_TO_STREAM(pp, param_len); UINT8_TO_STREAM(pp, options); UINT8_TO_STREAM(pp, adv_sid); UINT8_TO_STREAM(pp, address_type); BDADDR_TO_STREAM(pp, bda_peer); UINT16_TO_STREAM(pp, skip); UINT16_TO_STREAM(pp, sync_tout); UINT8_TO_STREAM(pp, sync_cte_type); btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p); } void btsnd_hcic_ble_terminate_periodic_sync(uint16_t sync_handle) { BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE); uint8_t* pp = (uint8_t*)(p + 1); const uint16_t param_len = 2; p->len = HCIC_PREAMBLE_SIZE + param_len; p->offset = 0; UINT16_TO_STREAM(pp, HCI_LE_PERIODIC_ADVERTISING_TERMINATE_SYNC); UINT8_TO_STREAM(pp, param_len); UINT16_TO_STREAM(pp, sync_handle); btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p); } void btsnd_hci_ble_cancel_period_sync() { BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE); uint8_t* pp = (uint8_t*)(p + 1); const uint16_t param_len = 0; p->len = HCIC_PREAMBLE_SIZE + param_len; p->offset = 0; UINT16_TO_STREAM(pp, HCI_LE_PERIODIC_ADVERTISING_CREATE_SYNC_CANCEL); UINT8_TO_STREAM(pp, param_len); btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p); } void btsnd_hcic_ble_pa_sync_tx(uint16_t conn_handle, uint16_t service_data, uint16_t sync_handle, base::Callback cb) { const uint16_t param_len = 6; uint8_t *param = (uint8_t *)osi_malloc(param_len); uint8_t *p = param; UINT16_TO_STREAM(p, conn_handle); UINT16_TO_STREAM(p, service_data); UINT16_TO_STREAM(p, sync_handle); btu_hcif_send_cmd_with_cb(FROM_HERE, HCI_LE_SET_PERIODIC_ADVERTISING_SYNC_TRANSFER, param, param_len, std::move(cb)); } void btsnd_hcic_ble_pa_set_info_tx(uint16_t conn_handle, uint16_t service_data, uint8_t adv_handle, base::Callback cb) { const uint16_t param_len = 5; uint8_t *param = (uint8_t *)osi_malloc(param_len); uint8_t *p = param; UINT16_TO_STREAM(p, conn_handle); UINT16_TO_STREAM(p, service_data); UINT16_TO_STREAM(p, adv_handle); btu_hcif_send_cmd_with_cb(FROM_HERE, HCI_LE_SET_PERIODIC_ADVERTISING_SET_INFO_TRANSFER, param, param_len, std::move(cb)); } void btsnd_hcic_ble_pa_sync_tx_parameters(uint16_t conn_handle, uint8_t mode, uint16_t skip, uint16_t timeout, uint8_t cte_type) { const uint16_t param_len = 8; BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE); uint8_t* pp = (uint8_t*)(p + 1); p->len = HCIC_PREAMBLE_SIZE + param_len; p->offset = 0; UINT16_TO_STREAM(pp, HCI_LE_SET_PERIODIC_ADVERTISING_SYNC_TRANSFER_PARAMETERS); UINT8_TO_STREAM(pp, param_len); UINT16_TO_STREAM(pp, conn_handle); UINT8_TO_STREAM(pp, mode); UINT16_TO_STREAM(pp, skip); UINT16_TO_STREAM(pp, timeout); UINT16_TO_STREAM(pp, cte_type); btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p); } void btsnd_hcic_ble_subrate_request(uint16_t conn_handle, uint16_t subrate_min, uint16_t subrate_max, uint16_t max_latency, uint16_t cont_num, uint16_t sup_tout) { BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE); uint8_t* pp = (uint8_t*)(p + 1); p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_BLE_SUBRATE_REQ; p->offset = 0; UINT16_TO_STREAM(pp, HCI_BLE_SUBRATE_REQ); UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_BLE_SUBRATE_REQ); UINT16_TO_STREAM(pp, conn_handle); UINT16_TO_STREAM(pp, subrate_min); UINT16_TO_STREAM(pp, subrate_max); UINT16_TO_STREAM(pp, max_latency); UINT16_TO_STREAM(pp, cont_num); UINT16_TO_STREAM(pp, sup_tout); btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p); } void btsnd_hcic_ble_set_default_subrate(uint16_t subrate_min, uint16_t subrate_max, uint16_t max_latency, uint16_t cont_num, uint16_t sup_tout) { BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE); uint8_t* pp = (uint8_t*)(p + 1); p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_BLE_SET_DEFAULT_SUBRATE; p->offset = 0; UINT16_TO_STREAM(pp, HCI_BLE_SET_DEFAULT_SUBRATE); UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_BLE_SET_DEFAULT_SUBRATE); UINT16_TO_STREAM(pp, subrate_min); UINT16_TO_STREAM(pp, subrate_max); UINT16_TO_STREAM(pp, max_latency); UINT16_TO_STREAM(pp, cont_num); UINT16_TO_STREAM(pp, sup_tout); btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p); } #ifdef DIR_FINDING_FEATURE void btsnd_hcic_ble_set_conn_cte_rx_params(uint16_t conn_handle, uint8_t sampling_enable, uint8_t slot_durations, uint8_t switching_pattern_len, std::vector antenna_ids, base::Callback cb) { uint16_t param_len = HCIC_PARAM_SIZE_BLE_SET_CONN_CTE_RX_PARAMS_FIXED + (switching_pattern_len * sizeof(uint8_t)); uint8_t param[param_len]; uint8_t* pp = param; UINT16_TO_STREAM(pp, conn_handle); UINT8_TO_STREAM(pp, sampling_enable); UINT8_TO_STREAM(pp, slot_durations); UINT8_TO_STREAM(pp, switching_pattern_len); ARRAY_TO_STREAM(pp, antenna_ids, switching_pattern_len); btu_hcif_send_cmd_with_cb(FROM_HERE, HCI_BLE_SET_CONN_CTE_RX_PARAMS, param, param_len, std::move(cb)); } void btsnd_hcic_ble_set_conn_cte_tx_params(uint16_t conn_handle, uint8_t cte_types, uint8_t switching_pattern_len, std::vector antenna_ids, base::Callback cb) { uint16_t param_len = HCIC_PARAM_SIZE_BLE_SET_CONN_CTE_TX_PARAMS_FIXED + (switching_pattern_len * sizeof(uint8_t)); uint8_t param[param_len]; uint8_t* pp = param; UINT16_TO_STREAM(pp, conn_handle); UINT8_TO_STREAM(pp, cte_types); UINT8_TO_STREAM(pp, switching_pattern_len); ARRAY_TO_STREAM(pp, antenna_ids, switching_pattern_len); btu_hcif_send_cmd_with_cb(FROM_HERE, HCI_BLE_SET_CONN_CTE_TX_PARAMS, param, param_len, std::move(cb)); } void btsnd_hcic_ble_set_conn_cte_req_enable(uint16_t conn_handle, uint8_t enable, uint16_t cte_req_int, uint8_t req_cte_len, uint8_t req_cte_type, base::Callback cb) { uint8_t param[HCIC_PARAM_SIZE_BLE_SET_CONN_CTE_REQ_ENABLE]; uint8_t* pp = param; UINT16_TO_STREAM(pp, conn_handle); UINT8_TO_STREAM(pp, enable); UINT16_TO_STREAM(pp, cte_req_int); UINT8_TO_STREAM(pp, req_cte_len); UINT8_TO_STREAM(pp, req_cte_type); btu_hcif_send_cmd_with_cb(FROM_HERE, HCI_BLE_SET_CONN_CTE_REQ_ENABLE, param, HCIC_PARAM_SIZE_BLE_SET_CONN_CTE_REQ_ENABLE, std::move(cb)); } void btsnd_hcic_ble_set_conn_cte_rsp_enable(uint16_t conn_handle, uint8_t enable, base::Callback cb) { uint16_t param_len = HCIC_PARAM_SIZE_BLE_SET_CONN_CTE_RSP_ENABLE; uint8_t param[param_len]; uint8_t* pp = param; UINT16_TO_STREAM(pp, conn_handle); UINT8_TO_STREAM(pp, enable); btu_hcif_send_cmd_with_cb(FROM_HERE, HCI_BLE_SET_CONN_CTE_RSP_ENABLE, param, param_len, std::move(cb)); } void btsnd_hcic_ble_read_antenna_info() { BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE); uint8_t* pp = (uint8_t*)(p + 1); p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_BLE_READ_ANTENNA_INFO; p->offset = 0; UINT16_TO_STREAM(pp, HCI_BLE_READ_ANTENNA_INFO); UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_BLE_READ_ANTENNA_INFO); btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p); } #endif //DIR_FINDING_FEATURE