2016-09-26 13:37:39 +00:00
|
|
|
/******************************************************************************
|
|
|
|
*
|
|
|
|
* Copyright (C) 2000-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.
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
#include <string.h>
|
|
|
|
|
2018-04-08 04:10:50 +00:00
|
|
|
#include "common/bt_defs.h"
|
|
|
|
#include "common/bt_target.h"
|
|
|
|
#include "common/bt_trace.h"
|
|
|
|
#include "device/controller.h"
|
|
|
|
#include "osi/alarm.h"
|
|
|
|
#include "osi/hash_map.h"
|
|
|
|
#include "osi/hash_functions.h"
|
|
|
|
#include "osi/thread.h"
|
|
|
|
#include "osi/mutex.h"
|
2016-09-26 13:37:39 +00:00
|
|
|
|
|
|
|
#include "l2c_int.h"
|
2018-04-08 04:10:50 +00:00
|
|
|
#include "stack/dyn_mem.h"
|
|
|
|
#include "stack/btu.h"
|
2016-09-26 13:37:39 +00:00
|
|
|
#include "btm_int.h"
|
|
|
|
|
|
|
|
#if SDP_INCLUDED == TRUE
|
|
|
|
#include "sdpint.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if (BLE_INCLUDED == TRUE)
|
2018-04-08 04:10:50 +00:00
|
|
|
#include "stack/gatt_api.h"
|
2016-09-26 13:37:39 +00:00
|
|
|
#include "gatt_int.h"
|
|
|
|
#if SMP_INCLUDED == TRUE
|
|
|
|
#include "smp_int.h"
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2018-09-14 09:24:25 +00:00
|
|
|
#define BTU_TASK_PINNED_TO_CORE (TASK_PINNED_TO_CORE)
|
2019-08-28 21:30:07 +00:00
|
|
|
#define BTU_TASK_STACK_SIZE (BT_BTU_TASK_STACK_SIZE + BT_TASK_EXTRA_STACK_SIZE)
|
2018-09-17 08:44:38 +00:00
|
|
|
#define BTU_TASK_PRIO (BT_TASK_MAX_PRIORITIES - 5)
|
2018-09-14 09:24:25 +00:00
|
|
|
#define BTU_TASK_NAME "btuT"
|
|
|
|
|
2016-09-26 13:37:39 +00:00
|
|
|
hash_map_t *btu_general_alarm_hash_map;
|
2017-08-17 13:13:45 +00:00
|
|
|
osi_mutex_t btu_general_alarm_lock;
|
2016-10-15 09:46:10 +00:00
|
|
|
static const size_t BTU_GENERAL_ALARM_HASH_MAP_SIZE = 34;
|
2016-09-26 13:37:39 +00:00
|
|
|
|
|
|
|
hash_map_t *btu_oneshot_alarm_hash_map;
|
2017-08-17 13:13:45 +00:00
|
|
|
osi_mutex_t btu_oneshot_alarm_lock;
|
2016-10-15 09:46:10 +00:00
|
|
|
static const size_t BTU_ONESHOT_ALARM_HASH_MAP_SIZE = 34;
|
2016-09-26 13:37:39 +00:00
|
|
|
|
|
|
|
hash_map_t *btu_l2cap_alarm_hash_map;
|
2017-08-17 13:13:45 +00:00
|
|
|
osi_mutex_t btu_l2cap_alarm_lock;
|
2016-10-15 09:46:10 +00:00
|
|
|
static const size_t BTU_L2CAP_ALARM_HASH_MAP_SIZE = 34;
|
2016-09-26 13:37:39 +00:00
|
|
|
|
2018-09-14 09:24:25 +00:00
|
|
|
osi_thread_t *btu_thread = NULL;
|
2016-09-26 13:37:39 +00:00
|
|
|
|
|
|
|
extern void PLATFORM_DisableHciTransport(UINT8 bDisable);
|
|
|
|
|
2016-10-10 13:34:21 +00:00
|
|
|
extern void btu_task_thread_handler(void *arg);
|
2019-06-21 03:55:45 +00:00
|
|
|
void btu_task_start_up(void * param);
|
2016-10-10 13:34:21 +00:00
|
|
|
void btu_task_shut_down(void);
|
2018-09-14 09:24:25 +00:00
|
|
|
|
2016-09-26 13:37:39 +00:00
|
|
|
/*****************************************************************************
|
|
|
|
** V A R I A B L E S *
|
|
|
|
******************************************************************************/
|
|
|
|
// TODO(cmanton) Move this out of this file
|
|
|
|
const BD_ADDR BT_BD_ANY = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
|
|
|
|
/*****************************************************************************
|
|
|
|
**
|
|
|
|
** Function btu_init_core
|
|
|
|
**
|
|
|
|
** Description Initialize control block memory for each core component.
|
|
|
|
**
|
|
|
|
**
|
|
|
|
** Returns void
|
|
|
|
**
|
|
|
|
******************************************************************************/
|
|
|
|
void btu_init_core(void)
|
|
|
|
{
|
|
|
|
/* Initialize the mandatory core stack components */
|
|
|
|
btm_init();
|
|
|
|
|
|
|
|
l2c_init();
|
|
|
|
|
|
|
|
#if (defined(SDP_INCLUDED) && SDP_INCLUDED == TRUE)
|
|
|
|
sdp_init();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if BLE_INCLUDED == TRUE
|
|
|
|
#if (defined(GATT_INCLUDED) && GATT_INCLUDED == true)
|
|
|
|
gatt_init();
|
|
|
|
#endif
|
|
|
|
#if (defined(SMP_INCLUDED) && SMP_INCLUDED == TRUE)
|
|
|
|
SMP_Init();
|
|
|
|
#endif
|
|
|
|
btm_ble_init();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
**
|
|
|
|
** Function btu_free_core
|
|
|
|
**
|
|
|
|
** Description Releases control block memory for each core component.
|
|
|
|
**
|
|
|
|
**
|
|
|
|
** Returns void
|
|
|
|
**
|
|
|
|
******************************************************************************/
|
|
|
|
void btu_free_core(void)
|
|
|
|
{
|
2016-11-24 18:10:15 +00:00
|
|
|
// Free the mandatory core stack components
|
|
|
|
l2c_free();
|
2016-09-26 13:37:39 +00:00
|
|
|
|
2018-03-15 06:36:49 +00:00
|
|
|
#if (defined(SDP_INCLUDED) && SDP_INCLUDED == TRUE)
|
|
|
|
sdp_deinit();
|
|
|
|
#endif
|
|
|
|
|
2016-09-26 13:37:39 +00:00
|
|
|
#if BLE_INCLUDED == TRUE
|
2017-10-18 07:34:43 +00:00
|
|
|
#if (defined(GATT_INCLUDED) && GATT_INCLUDED == true)
|
2016-11-24 18:10:15 +00:00
|
|
|
gatt_free();
|
2016-09-26 13:37:39 +00:00
|
|
|
#endif
|
2017-10-18 07:34:43 +00:00
|
|
|
#if SMP_INCLUDED == TRUE
|
|
|
|
SMP_Free();
|
|
|
|
#endif
|
2019-07-26 03:18:42 +00:00
|
|
|
btm_ble_free();
|
|
|
|
#endif
|
|
|
|
btm_free();
|
2016-09-26 13:37:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
**
|
|
|
|
** Function BTU_StartUp
|
|
|
|
**
|
|
|
|
** Description Initializes the BTU control block.
|
|
|
|
**
|
|
|
|
** NOTE: Must be called before creating any tasks
|
|
|
|
** (RPC, BTU, HCIT, APPL, etc.)
|
|
|
|
**
|
|
|
|
** Returns void
|
|
|
|
**
|
|
|
|
******************************************************************************/
|
|
|
|
void BTU_StartUp(void)
|
|
|
|
{
|
2017-10-18 07:34:43 +00:00
|
|
|
#if BTU_DYNAMIC_MEMORY
|
|
|
|
btu_cb_ptr = (tBTU_CB *)osi_malloc(sizeof(tBTU_CB));
|
|
|
|
#endif /* #if BTU_DYNAMIC_MEMORY */
|
2016-09-26 13:37:39 +00:00
|
|
|
memset (&btu_cb, 0, sizeof (tBTU_CB));
|
|
|
|
btu_cb.trace_level = HCI_INITIAL_TRACE_LEVEL;
|
|
|
|
|
|
|
|
btu_general_alarm_hash_map = hash_map_new(BTU_GENERAL_ALARM_HASH_MAP_SIZE,
|
2016-11-24 18:10:15 +00:00
|
|
|
hash_function_pointer, NULL, (data_free_fn)osi_alarm_free, NULL);
|
|
|
|
if (btu_general_alarm_hash_map == NULL) {
|
2016-09-26 13:37:39 +00:00
|
|
|
goto error_exit;
|
2016-11-24 18:10:15 +00:00
|
|
|
}
|
2016-09-26 13:37:39 +00:00
|
|
|
|
2017-08-17 13:13:45 +00:00
|
|
|
osi_mutex_new(&btu_general_alarm_lock);
|
2016-09-26 13:37:39 +00:00
|
|
|
|
|
|
|
btu_oneshot_alarm_hash_map = hash_map_new(BTU_ONESHOT_ALARM_HASH_MAP_SIZE,
|
2016-11-24 18:10:15 +00:00
|
|
|
hash_function_pointer, NULL, (data_free_fn)osi_alarm_free, NULL);
|
|
|
|
if (btu_oneshot_alarm_hash_map == NULL) {
|
2016-09-26 13:37:39 +00:00
|
|
|
goto error_exit;
|
2016-11-24 18:10:15 +00:00
|
|
|
}
|
2016-09-26 13:37:39 +00:00
|
|
|
|
2017-08-17 13:13:45 +00:00
|
|
|
osi_mutex_new(&btu_oneshot_alarm_lock);
|
2016-09-26 13:37:39 +00:00
|
|
|
|
|
|
|
btu_l2cap_alarm_hash_map = hash_map_new(BTU_L2CAP_ALARM_HASH_MAP_SIZE,
|
2016-11-24 18:10:15 +00:00
|
|
|
hash_function_pointer, NULL, (data_free_fn)osi_alarm_free, NULL);
|
|
|
|
if (btu_l2cap_alarm_hash_map == NULL) {
|
2016-09-26 13:37:39 +00:00
|
|
|
goto error_exit;
|
2016-11-24 18:10:15 +00:00
|
|
|
}
|
2016-09-26 13:37:39 +00:00
|
|
|
|
2017-08-17 13:13:45 +00:00
|
|
|
osi_mutex_new(&btu_l2cap_alarm_lock);
|
2016-09-26 13:37:39 +00:00
|
|
|
|
2018-09-14 09:24:25 +00:00
|
|
|
btu_thread = osi_thread_create(BTU_TASK_NAME, BTU_TASK_STACK_SIZE, BTU_TASK_PRIO, BTU_TASK_PINNED_TO_CORE, 1);
|
|
|
|
if (btu_thread == NULL) {
|
|
|
|
goto error_exit;
|
|
|
|
}
|
2017-01-23 08:11:27 +00:00
|
|
|
|
2019-04-18 03:57:28 +00:00
|
|
|
if (btu_task_post(SIG_BTU_START_UP, NULL, OSI_THREAD_MAX_TIMEOUT) == false) {
|
2018-09-14 09:24:25 +00:00
|
|
|
goto error_exit;
|
|
|
|
}
|
2017-01-23 08:11:27 +00:00
|
|
|
|
2016-09-26 13:37:39 +00:00
|
|
|
return;
|
|
|
|
|
2016-11-24 18:10:15 +00:00
|
|
|
error_exit:;
|
2016-09-26 13:37:39 +00:00
|
|
|
LOG_ERROR("%s Unable to allocate resources for bt_workqueue", __func__);
|
|
|
|
BTU_ShutDown();
|
|
|
|
}
|
|
|
|
|
2019-06-21 03:55:45 +00:00
|
|
|
/*****************************************************************************
|
|
|
|
**
|
|
|
|
** Function BTU_ShutDown
|
|
|
|
**
|
|
|
|
** Description Deinitializes the BTU control block.
|
|
|
|
**
|
|
|
|
** Returns void
|
|
|
|
**
|
|
|
|
******************************************************************************/
|
2016-11-24 18:10:15 +00:00
|
|
|
void BTU_ShutDown(void)
|
|
|
|
{
|
2017-10-18 07:34:43 +00:00
|
|
|
#if BTU_DYNAMIC_MEMORY
|
|
|
|
FREE_AND_RESET(btu_cb_ptr);
|
|
|
|
#endif
|
2016-11-24 18:10:15 +00:00
|
|
|
btu_task_shut_down();
|
2016-12-12 20:10:44 +00:00
|
|
|
|
2016-11-24 18:10:15 +00:00
|
|
|
hash_map_free(btu_general_alarm_hash_map);
|
2017-08-17 13:13:45 +00:00
|
|
|
osi_mutex_free(&btu_general_alarm_lock);
|
2016-09-26 13:37:39 +00:00
|
|
|
|
2016-11-24 18:10:15 +00:00
|
|
|
hash_map_free(btu_oneshot_alarm_hash_map);
|
2017-08-17 13:13:45 +00:00
|
|
|
osi_mutex_free(&btu_oneshot_alarm_lock);
|
2016-09-26 13:37:39 +00:00
|
|
|
|
2016-11-24 18:10:15 +00:00
|
|
|
hash_map_free(btu_l2cap_alarm_hash_map);
|
2017-08-17 13:13:45 +00:00
|
|
|
osi_mutex_free(&btu_l2cap_alarm_lock);
|
2016-09-26 13:37:39 +00:00
|
|
|
|
2018-09-14 09:24:25 +00:00
|
|
|
if (btu_thread) {
|
|
|
|
osi_thread_free(btu_thread);
|
|
|
|
btu_thread = NULL;
|
|
|
|
}
|
2016-09-26 13:37:39 +00:00
|
|
|
|
2018-09-17 08:44:38 +00:00
|
|
|
btu_general_alarm_hash_map = NULL;
|
2016-11-24 18:10:15 +00:00
|
|
|
btu_oneshot_alarm_hash_map = NULL;
|
|
|
|
btu_l2cap_alarm_hash_map = NULL;
|
2016-09-26 13:37:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
**
|
|
|
|
** Function BTU_BleAclPktSize
|
|
|
|
**
|
|
|
|
** Description export the BLE ACL packet size.
|
|
|
|
**
|
|
|
|
** Returns UINT16
|
|
|
|
**
|
|
|
|
******************************************************************************/
|
|
|
|
UINT16 BTU_BleAclPktSize(void)
|
|
|
|
{
|
|
|
|
#if BLE_INCLUDED == TRUE
|
|
|
|
return controller_get_interface()->get_acl_packet_size_ble();
|
|
|
|
#else
|
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
}
|
2018-09-14 09:24:25 +00:00
|
|
|
|
2018-07-02 02:59:51 +00:00
|
|
|
#if SCAN_QUEUE_CONGEST_CHECK
|
|
|
|
bool BTU_check_queue_is_congest(void)
|
|
|
|
{
|
2019-06-30 08:39:00 +00:00
|
|
|
if (osi_thread_queue_wait_size(btu_thread, 0) >= BT_QUEUE_CONGEST_SIZE) {
|
2018-07-02 02:59:51 +00:00
|
|
|
return true;
|
|
|
|
}
|
2018-09-14 09:24:25 +00:00
|
|
|
|
2018-07-02 02:59:51 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
#endif
|