blob: 16289769ec392ce957045ad3b688f91eff37f535 [file] [log] [blame]
The Android Open Source Project5738f832012-12-12 16:00:35 -08001/******************************************************************************
2 *
Jakub Pawlowski5b790fe2017-09-18 09:00:20 -07003 * Copyright 2009-2012 Broadcom Corporation
The Android Open Source Project5738f832012-12-12 16:00:35 -08004 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at:
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 ******************************************************************************/
18
19/******************************************************************************
20 *
Pavlin Radoslavovb2a292b2016-10-14 19:34:48 -070021 * Filename: bte_main.cc
The Android Open Source Project5738f832012-12-12 16:00:35 -080022 *
23 * Description: Contains BTE core stack initialization and shutdown code
24 *
25 ******************************************************************************/
Sharvil Nanavati44802762014-12-23 23:08:58 -080026
Marie Janssen49120dc2015-07-07 16:47:20 -070027#define LOG_TAG "bt_main"
28
Jack Hef2af1c42016-12-13 01:59:12 -080029#include <base/logging.h>
Ajay Panicker2b7e9052017-03-01 10:00:30 -080030#include <base/threading/thread.h>
Sharvil Nanavati14a559a2014-07-25 22:20:46 -070031#include <fcntl.h>
Chris Manton18023292014-08-29 09:12:06 -070032#include <pthread.h>
YK Jeffrey Chao48ebe2c2013-04-24 11:38:06 -070033#include <signal.h>
Sharvil Nanavati14a559a2014-07-25 22:20:46 -070034#include <stdlib.h>
YK Jeffrey Chao48ebe2c2013-04-24 11:38:06 -070035#include <time.h>
The Android Open Source Project5738f832012-12-12 16:00:35 -080036
Marie Janssendb554582015-06-26 14:53:46 -070037#include <hardware/bluetooth.h>
38
Myles Watson911d1ae2016-11-28 16:44:40 -080039#include "bt_common.h"
Matthew Xie66432dc2014-04-27 05:45:32 -070040#include "bt_hci_bdroid.h"
Sharvil Nanavati14a559a2014-07-25 22:20:46 -070041#include "bt_utils.h"
Marie Janssendb554582015-06-26 14:53:46 -070042#include "bta_api.h"
Andre Eisenbachcae219f2015-05-18 09:41:06 -070043#include "btcore/include/module.h"
Marie Janssendb554582015-06-26 14:53:46 -070044#include "bte.h"
45#include "btif_common.h"
46#include "btsnoop.h"
47#include "btu.h"
Andre Eisenbache42d1d72016-01-14 02:00:24 -080048#include "device/include/interop.h"
Marie Janssendb554582015-06-26 14:53:46 -070049#include "hci_layer.h"
Pavlin Radoslavovb2a292b2016-10-14 19:34:48 -070050#include "hcimsgs.h"
Marie Janssendb554582015-06-26 14:53:46 -070051#include "osi/include/alarm.h"
Sharvil Nanavati0f9b91e2015-03-12 15:42:50 -070052#include "osi/include/fixed_queue.h"
53#include "osi/include/future.h"
Sharvil Nanavati44802762014-12-23 23:08:58 -080054#include "osi/include/log.h"
Marie Janssendb554582015-06-26 14:53:46 -070055#include "osi/include/osi.h"
Chris Mantond4348632019-09-11 09:28:41 -070056#include "shim/hci_layer.h"
Chris Manton1bb0e512019-09-09 21:11:59 -070057#include "shim/shim.h"
Marie Janssendb554582015-06-26 14:53:46 -070058#include "stack_config.h"
The Android Open Source Project5738f832012-12-12 16:00:35 -080059
60/*******************************************************************************
Myles Watsonee96a3c2016-11-23 14:49:54 -080061 * Constants & Macros
62 ******************************************************************************/
The Android Open Source Project5738f832012-12-12 16:00:35 -080063
Prerepa Viswanadham4c94c5f2014-07-18 15:20:54 -070064/* Run-time configuration file for BLE*/
65#ifndef BTE_BLE_STACK_CONF_FILE
Arman Ugurayf2d64342015-07-08 15:47:39 -070066// TODO(armansito): Find a better way than searching by a hardcoded path.
67#if defined(OS_GENERIC)
68#define BTE_BLE_STACK_CONF_FILE "ble_stack.conf"
69#else // !defined(OS_GENERIC)
Prerepa Viswanadham4c94c5f2014-07-18 15:20:54 -070070#define BTE_BLE_STACK_CONF_FILE "/etc/bluetooth/ble_stack.conf"
Arman Ugurayf2d64342015-07-08 15:47:39 -070071#endif // defined(OS_GENERIC)
72#endif // BT_BLE_STACK_CONF_FILE
The Android Open Source Project5738f832012-12-12 16:00:35 -080073
The Android Open Source Project5738f832012-12-12 16:00:35 -080074/******************************************************************************
Myles Watsonee96a3c2016-11-23 14:49:54 -080075 * Variables
76 *****************************************************************************/
The Android Open Source Project5738f832012-12-12 16:00:35 -080077
The Android Open Source Project5738f832012-12-12 16:00:35 -080078/*******************************************************************************
Myles Watsonee96a3c2016-11-23 14:49:54 -080079 * Static variables
80 ******************************************************************************/
Myles Watson911d1ae2016-11-28 16:44:40 -080081static const hci_t* hci;
The Android Open Source Project5738f832012-12-12 16:00:35 -080082
83/*******************************************************************************
Ajay Panicker2b7e9052017-03-01 10:00:30 -080084 * Externs
85 ******************************************************************************/
86extern void btu_hci_msg_process(BT_HDR* p_msg);
87
88/*******************************************************************************
Myles Watsonee96a3c2016-11-23 14:49:54 -080089 * Static functions
90 ******************************************************************************/
The Android Open Source Project5738f832012-12-12 16:00:35 -080091
Ajay Panicker2b7e9052017-03-01 10:00:30 -080092/******************************************************************************
93 *
94 * Function post_to_hci_message_loop
95 *
Jack He96d16e32018-08-27 13:55:14 -070096 * Description Post an HCI event to the main thread
Ajay Panicker2b7e9052017-03-01 10:00:30 -080097 *
98 * Returns None
99 *
100 *****************************************************************************/
Jakub Pawlowski67f5f372018-07-23 10:00:25 -0700101void post_to_main_message_loop(const base::Location& from_here, BT_HDR* p_msg) {
Jack He96d16e32018-08-27 13:55:14 -0700102 if (do_in_main_thread(from_here, base::Bind(&btu_hci_msg_process, p_msg)) !=
103 BT_STATUS_SUCCESS) {
104 LOG(ERROR) << __func__ << ": do_in_main_thread failed from "
105 << from_here.ToString();
Ajay Panicker2b7e9052017-03-01 10:00:30 -0800106 }
Ajay Panicker2b7e9052017-03-01 10:00:30 -0800107}
Chris Manton307381e2014-09-04 19:48:49 -0700108
The Android Open Source Project5738f832012-12-12 16:00:35 -0800109/******************************************************************************
Myles Watsonee96a3c2016-11-23 14:49:54 -0800110 *
111 * Function bte_main_boot_entry
112 *
113 * Description BTE MAIN API - Entry point for BTE chip/stack initialization
114 *
115 * Returns None
116 *
117 *****************************************************************************/
Myles Watson911d1ae2016-11-28 16:44:40 -0800118void bte_main_boot_entry(void) {
119 module_init(get_module(INTEROP_MODULE));
The Android Open Source Project5738f832012-12-12 16:00:35 -0800120
Myles Watson911d1ae2016-11-28 16:44:40 -0800121 hci = hci_layer_get_interface();
Myles Watson5d700dd2017-03-21 10:24:20 -0700122 if (!hci) {
Myles Watson911d1ae2016-11-28 16:44:40 -0800123 LOG_ERROR(LOG_TAG, "%s could not get hci layer interface.", __func__);
Myles Watson5d700dd2017-03-21 10:24:20 -0700124 return;
125 }
Zach Johnsonfbbd42b2014-08-15 17:00:17 -0700126
Jack He96d16e32018-08-27 13:55:14 -0700127 hci->set_data_cb(base::Bind(&post_to_main_message_loop));
Sharvil Nanavati14a559a2014-07-25 22:20:46 -0700128
Myles Watson911d1ae2016-11-28 16:44:40 -0800129 module_init(get_module(STACK_CONFIG_MODULE));
The Android Open Source Project5738f832012-12-12 16:00:35 -0800130}
131
132/******************************************************************************
Myles Watsonee96a3c2016-11-23 14:49:54 -0800133 *
134 * Function bte_main_cleanup
135 *
136 * Description BTE MAIN API - Cleanup code for BTE chip/stack
137 *
138 * Returns None
139 *
140 *****************************************************************************/
Myles Watson911d1ae2016-11-28 16:44:40 -0800141void bte_main_cleanup() {
Myles Watson911d1ae2016-11-28 16:44:40 -0800142 module_clean_up(get_module(STACK_CONFIG_MODULE));
Zach Johnson9891f322014-09-22 22:11:55 -0700143
Myles Watson911d1ae2016-11-28 16:44:40 -0800144 module_clean_up(get_module(INTEROP_MODULE));
The Android Open Source Project5738f832012-12-12 16:00:35 -0800145}
146
147/******************************************************************************
Myles Watsonee96a3c2016-11-23 14:49:54 -0800148 *
149 * Function bte_main_enable
150 *
151 * Description BTE MAIN API - Creates all the BTE tasks. Should be called
152 * part of the Bluetooth stack enable sequence
153 *
154 * Returns None
155 *
156 *****************************************************************************/
Myles Watson911d1ae2016-11-28 16:44:40 -0800157void bte_main_enable() {
158 APPL_TRACE_DEBUG("%s", __func__);
The Android Open Source Project5738f832012-12-12 16:00:35 -0800159
Chris Manton1bb0e512019-09-09 21:11:59 -0700160 if (bluetooth::shim::is_gd_shim_enabled()) {
161 LOG_INFO(LOG_TAG, "%s Gd shim module enabled", __func__);
Chris Manton229de742019-09-10 11:23:13 -0700162 module_start_up(get_module(GD_SHIM_MODULE));
Chris Mantond4348632019-09-11 09:28:41 -0700163 module_start_up(get_module(GD_HCI_MODULE));
Chris Manton1bb0e512019-09-09 21:11:59 -0700164 } else {
165 module_start_up(get_module(BTSNOOP_MODULE));
166 module_start_up(get_module(HCI_MODULE));
167 }
Zach Johnson093948a2014-09-23 18:30:45 -0700168
Myles Watson911d1ae2016-11-28 16:44:40 -0800169 BTU_StartUp();
YK Jeffrey Chao48ebe2c2013-04-24 11:38:06 -0700170}
171
172/******************************************************************************
Myles Watsonee96a3c2016-11-23 14:49:54 -0800173 *
174 * Function bte_main_disable
175 *
176 * Description BTE MAIN API - Destroys all the BTE tasks. Should be called
177 * part of the Bluetooth stack disable sequence
178 *
179 * Returns None
180 *
181 *****************************************************************************/
Myles Watson911d1ae2016-11-28 16:44:40 -0800182void bte_main_disable(void) {
183 APPL_TRACE_DEBUG("%s", __func__);
YK Jeffrey Chao48ebe2c2013-04-24 11:38:06 -0700184
Chris Manton1bb0e512019-09-09 21:11:59 -0700185 if (bluetooth::shim::is_gd_shim_enabled()) {
186 LOG_INFO(LOG_TAG, "%s Gd shim module enabled", __func__);
Chris Mantond4348632019-09-11 09:28:41 -0700187 module_shut_down(get_module(GD_HCI_MODULE));
Chris Manton1bb0e512019-09-09 21:11:59 -0700188 module_shut_down(get_module(GD_SHIM_MODULE));
189 } else {
190 module_shut_down(get_module(HCI_MODULE));
191 module_shut_down(get_module(BTSNOOP_MODULE));
192 }
Zach Johnson733a06e2014-09-08 18:31:39 -0700193
Myles Watson911d1ae2016-11-28 16:44:40 -0800194 BTU_ShutDown();
YK Jeffrey Chao48ebe2c2013-04-24 11:38:06 -0700195}
196
197/******************************************************************************
Myles Watsonee96a3c2016-11-23 14:49:54 -0800198 *
199 * Function bte_main_postload_cfg
200 *
201 * Description BTE MAIN API - Stack postload configuration
202 *
203 * Returns None
204 *
205 *****************************************************************************/
Andre Eisenbach796523d2016-11-10 16:11:00 -0800206void bte_main_postload_cfg(void) {
207 // TODO(eisenbach): [HIDL] DEPRECATE?
208}
The Android Open Source Project5738f832012-12-12 16:00:35 -0800209
The Android Open Source Project5738f832012-12-12 16:00:35 -0800210/******************************************************************************
Myles Watsonee96a3c2016-11-23 14:49:54 -0800211 *
212 * Function bte_main_hci_send
213 *
214 * Description BTE MAIN API - This function is called by the upper stack to
215 * send an HCI message. The function displays a protocol trace
216 * message (if enabled), and then calls the 'transmit' function
217 * associated with the currently selected HCI transport
218 *
219 * Returns None
220 *
221 *****************************************************************************/
Myles Watson911d1ae2016-11-28 16:44:40 -0800222void bte_main_hci_send(BT_HDR* p_msg, uint16_t event) {
223 uint16_t sub_event = event & BT_SUB_EVT_MASK; /* local controller ID */
The Android Open Source Project5738f832012-12-12 16:00:35 -0800224
Myles Watson911d1ae2016-11-28 16:44:40 -0800225 p_msg->event = event;
The Android Open Source Project5738f832012-12-12 16:00:35 -0800226
Myles Watson911d1ae2016-11-28 16:44:40 -0800227 if ((sub_event == LOCAL_BR_EDR_CONTROLLER_ID) ||
228 (sub_event == LOCAL_BLE_CONTROLLER_ID)) {
229 hci->transmit_downward(event, p_msg);
230 } else {
231 APPL_TRACE_ERROR("Invalid Controller ID. Discarding message.");
232 osi_free(p_msg);
233 }
The Android Open Source Project5738f832012-12-12 16:00:35 -0800234}