blob: 86a0637dc5f471d16991b7dc676ba2ca9bda37f4 [file] [log] [blame]
The Android Open Source Project5738f832012-12-12 16:00:35 -08001/******************************************************************************
2 *
3 * Copyright (C) 2009-2012 Broadcom Corporation
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at:
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 ******************************************************************************/
18
19/******************************************************************************
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
The Android Open Source Project5738f832012-12-12 16:00:35 -080029#include <assert.h>
Sharvil Nanavati14a559a2014-07-25 22:20:46 -070030#include <fcntl.h>
Chris Manton18023292014-08-29 09:12:06 -070031#include <pthread.h>
YK Jeffrey Chao48ebe2c2013-04-24 11:38:06 -070032#include <signal.h>
Sharvil Nanavati14a559a2014-07-25 22:20:46 -070033#include <stdlib.h>
YK Jeffrey Chao48ebe2c2013-04-24 11:38:06 -070034#include <time.h>
The Android Open Source Project5738f832012-12-12 16:00:35 -080035
Marie Janssendb554582015-06-26 14:53:46 -070036#include <hardware/bluetooth.h>
37
Myles Watson911d1ae2016-11-28 16:44:40 -080038#include "bt_common.h"
Matthew Xie66432dc2014-04-27 05:45:32 -070039#include "bt_hci_bdroid.h"
Sharvil Nanavati14a559a2014-07-25 22:20:46 -070040#include "bt_utils.h"
Marie Janssendb554582015-06-26 14:53:46 -070041#include "bta_api.h"
Andre Eisenbachcae219f2015-05-18 09:41:06 -070042#include "btcore/include/module.h"
Marie Janssendb554582015-06-26 14:53:46 -070043#include "bte.h"
44#include "btif_common.h"
45#include "btsnoop.h"
46#include "btu.h"
Andre Eisenbache42d1d72016-01-14 02:00:24 -080047#include "device/include/interop.h"
Marie Janssendb554582015-06-26 14:53:46 -070048#include "hci_layer.h"
Pavlin Radoslavovb2a292b2016-10-14 19:34:48 -070049#include "hcimsgs.h"
Marie Janssendb554582015-06-26 14:53:46 -070050#include "osi/include/alarm.h"
Sharvil Nanavati0f9b91e2015-03-12 15:42:50 -070051#include "osi/include/fixed_queue.h"
52#include "osi/include/future.h"
Sharvil Nanavati44802762014-12-23 23:08:58 -080053#include "osi/include/log.h"
Marie Janssendb554582015-06-26 14:53:46 -070054#include "osi/include/osi.h"
Sharvil Nanavati0f9b91e2015-03-12 15:42:50 -070055#include "osi/include/thread.h"
Marie Janssendb554582015-06-26 14:53:46 -070056#include "stack_config.h"
The Android Open Source Project5738f832012-12-12 16:00:35 -080057
58/*******************************************************************************
Myles Watsonee96a3c2016-11-23 14:49:54 -080059 * Constants & Macros
60 ******************************************************************************/
The Android Open Source Project5738f832012-12-12 16:00:35 -080061
Prerepa Viswanadham4c94c5f2014-07-18 15:20:54 -070062/* Run-time configuration file for BLE*/
63#ifndef BTE_BLE_STACK_CONF_FILE
Arman Ugurayf2d64342015-07-08 15:47:39 -070064// TODO(armansito): Find a better way than searching by a hardcoded path.
65#if defined(OS_GENERIC)
66#define BTE_BLE_STACK_CONF_FILE "ble_stack.conf"
67#else // !defined(OS_GENERIC)
Prerepa Viswanadham4c94c5f2014-07-18 15:20:54 -070068#define BTE_BLE_STACK_CONF_FILE "/etc/bluetooth/ble_stack.conf"
Arman Ugurayf2d64342015-07-08 15:47:39 -070069#endif // defined(OS_GENERIC)
70#endif // BT_BLE_STACK_CONF_FILE
The Android Open Source Project5738f832012-12-12 16:00:35 -080071
The Android Open Source Project5738f832012-12-12 16:00:35 -080072/******************************************************************************
Myles Watsonee96a3c2016-11-23 14:49:54 -080073 * Variables
74 *****************************************************************************/
The Android Open Source Project5738f832012-12-12 16:00:35 -080075
The Android Open Source Project5738f832012-12-12 16:00:35 -080076/*******************************************************************************
Myles Watsonee96a3c2016-11-23 14:49:54 -080077 * Static variables
78 ******************************************************************************/
Myles Watson911d1ae2016-11-28 16:44:40 -080079static const hci_t* hci;
The Android Open Source Project5738f832012-12-12 16:00:35 -080080
81/*******************************************************************************
Myles Watsonee96a3c2016-11-23 14:49:54 -080082 * Static functions
83 ******************************************************************************/
The Android Open Source Project5738f832012-12-12 16:00:35 -080084
85/*******************************************************************************
Myles Watsonee96a3c2016-11-23 14:49:54 -080086 * Externs
87 ******************************************************************************/
Myles Watson911d1ae2016-11-28 16:44:40 -080088fixed_queue_t* btu_hci_msg_queue;
Chris Manton307381e2014-09-04 19:48:49 -070089
The Android Open Source Project5738f832012-12-12 16:00:35 -080090/******************************************************************************
Myles Watsonee96a3c2016-11-23 14:49:54 -080091 *
92 * Function bte_main_boot_entry
93 *
94 * Description BTE MAIN API - Entry point for BTE chip/stack initialization
95 *
96 * Returns None
97 *
98 *****************************************************************************/
Myles Watson911d1ae2016-11-28 16:44:40 -080099void bte_main_boot_entry(void) {
100 module_init(get_module(INTEROP_MODULE));
The Android Open Source Project5738f832012-12-12 16:00:35 -0800101
Myles Watson911d1ae2016-11-28 16:44:40 -0800102 hci = hci_layer_get_interface();
103 if (!hci)
104 LOG_ERROR(LOG_TAG, "%s could not get hci layer interface.", __func__);
Zach Johnsonfbbd42b2014-08-15 17:00:17 -0700105
Myles Watson911d1ae2016-11-28 16:44:40 -0800106 btu_hci_msg_queue = fixed_queue_new(SIZE_MAX);
107 if (btu_hci_msg_queue == NULL) {
108 LOG_ERROR(LOG_TAG, "%s unable to allocate hci message queue.", __func__);
109 return;
110 }
Zach Johnsonfbbd42b2014-08-15 17:00:17 -0700111
Myles Watson911d1ae2016-11-28 16:44:40 -0800112 data_dispatcher_register_default(hci->event_dispatcher, btu_hci_msg_queue);
113 hci->set_data_queue(btu_hci_msg_queue);
Sharvil Nanavati14a559a2014-07-25 22:20:46 -0700114
Myles Watson911d1ae2016-11-28 16:44:40 -0800115 module_init(get_module(STACK_CONFIG_MODULE));
The Android Open Source Project5738f832012-12-12 16:00:35 -0800116}
117
118/******************************************************************************
Myles Watsonee96a3c2016-11-23 14:49:54 -0800119 *
120 * Function bte_main_cleanup
121 *
122 * Description BTE MAIN API - Cleanup code for BTE chip/stack
123 *
124 * Returns None
125 *
126 *****************************************************************************/
Myles Watson911d1ae2016-11-28 16:44:40 -0800127void bte_main_cleanup() {
128 data_dispatcher_register_default(hci_layer_get_interface()->event_dispatcher,
129 NULL);
130 hci->set_data_queue(NULL);
131 fixed_queue_free(btu_hci_msg_queue, NULL);
Zach Johnson733a06e2014-09-08 18:31:39 -0700132
Myles Watson911d1ae2016-11-28 16:44:40 -0800133 btu_hci_msg_queue = NULL;
Sharvil Nanavati14a559a2014-07-25 22:20:46 -0700134
Myles Watson911d1ae2016-11-28 16:44:40 -0800135 module_clean_up(get_module(STACK_CONFIG_MODULE));
Zach Johnson9891f322014-09-22 22:11:55 -0700136
Myles Watson911d1ae2016-11-28 16:44:40 -0800137 module_clean_up(get_module(INTEROP_MODULE));
The Android Open Source Project5738f832012-12-12 16:00:35 -0800138}
139
140/******************************************************************************
Myles Watsonee96a3c2016-11-23 14:49:54 -0800141 *
142 * Function bte_main_enable
143 *
144 * Description BTE MAIN API - Creates all the BTE tasks. Should be called
145 * part of the Bluetooth stack enable sequence
146 *
147 * Returns None
148 *
149 *****************************************************************************/
Myles Watson911d1ae2016-11-28 16:44:40 -0800150void bte_main_enable() {
151 APPL_TRACE_DEBUG("%s", __func__);
The Android Open Source Project5738f832012-12-12 16:00:35 -0800152
Myles Watson911d1ae2016-11-28 16:44:40 -0800153 module_start_up(get_module(BTSNOOP_MODULE));
154 module_start_up(get_module(HCI_MODULE));
Zach Johnson093948a2014-09-23 18:30:45 -0700155
Myles Watson911d1ae2016-11-28 16:44:40 -0800156 BTU_StartUp();
YK Jeffrey Chao48ebe2c2013-04-24 11:38:06 -0700157}
158
159/******************************************************************************
Myles Watsonee96a3c2016-11-23 14:49:54 -0800160 *
161 * Function bte_main_disable
162 *
163 * Description BTE MAIN API - Destroys all the BTE tasks. Should be called
164 * part of the Bluetooth stack disable sequence
165 *
166 * Returns None
167 *
168 *****************************************************************************/
Myles Watson911d1ae2016-11-28 16:44:40 -0800169void bte_main_disable(void) {
170 APPL_TRACE_DEBUG("%s", __func__);
YK Jeffrey Chao48ebe2c2013-04-24 11:38:06 -0700171
Myles Watson911d1ae2016-11-28 16:44:40 -0800172 module_shut_down(get_module(HCI_MODULE));
173 module_shut_down(get_module(BTSNOOP_MODULE));
Zach Johnson733a06e2014-09-08 18:31:39 -0700174
Myles Watson911d1ae2016-11-28 16:44:40 -0800175 BTU_ShutDown();
YK Jeffrey Chao48ebe2c2013-04-24 11:38:06 -0700176}
177
178/******************************************************************************
Myles Watsonee96a3c2016-11-23 14:49:54 -0800179 *
180 * Function bte_main_postload_cfg
181 *
182 * Description BTE MAIN API - Stack postload configuration
183 *
184 * Returns None
185 *
186 *****************************************************************************/
Myles Watson911d1ae2016-11-28 16:44:40 -0800187void bte_main_postload_cfg(void) { hci->do_postload(); }
The Android Open Source Project5738f832012-12-12 16:00:35 -0800188
Marie Janssend19e0782016-07-15 12:48:27 -0700189#if (HCILP_INCLUDED == TRUE)
The Android Open Source Project5738f832012-12-12 16:00:35 -0800190/******************************************************************************
Myles Watsonee96a3c2016-11-23 14:49:54 -0800191 *
192 * Function bte_main_enable_lpm
193 *
194 * Description BTE MAIN API - Enable/Disable low power mode operation
195 *
196 * Returns None
197 *
198 *****************************************************************************/
Myles Watson911d1ae2016-11-28 16:44:40 -0800199void bte_main_enable_lpm(bool enable) {
200 hci->send_low_power_command(enable ? LPM_ENABLE : LPM_DISABLE);
The Android Open Source Project5738f832012-12-12 16:00:35 -0800201}
202
203/******************************************************************************
Myles Watsonee96a3c2016-11-23 14:49:54 -0800204 *
205 * Function bte_main_lpm_allow_bt_device_sleep
206 *
207 * Description BTE MAIN API - Allow the BT controller to go to sleep
208 *
209 * Returns None
210 *
211 *****************************************************************************/
Myles Watson911d1ae2016-11-28 16:44:40 -0800212void bte_main_lpm_allow_bt_device_sleep() {
213 hci->send_low_power_command(LPM_WAKE_DEASSERT);
The Android Open Source Project5738f832012-12-12 16:00:35 -0800214}
215
216/******************************************************************************
Myles Watsonee96a3c2016-11-23 14:49:54 -0800217 *
218 * Function bte_main_lpm_wake_bt_device
219 *
220 * Description BTE MAIN API - Wake BT controller up if it is in sleep mode
221 *
222 * Returns None
223 *
224 *****************************************************************************/
Myles Watson911d1ae2016-11-28 16:44:40 -0800225void bte_main_lpm_wake_bt_device() {
226 hci->send_low_power_command(LPM_WAKE_ASSERT);
The Android Open Source Project5738f832012-12-12 16:00:35 -0800227}
228#endif // HCILP_INCLUDED
229
230/******************************************************************************
Myles Watsonee96a3c2016-11-23 14:49:54 -0800231 *
232 * Function bte_main_hci_send
233 *
234 * Description BTE MAIN API - This function is called by the upper stack to
235 * send an HCI message. The function displays a protocol trace
236 * message (if enabled), and then calls the 'transmit' function
237 * associated with the currently selected HCI transport
238 *
239 * Returns None
240 *
241 *****************************************************************************/
Myles Watson911d1ae2016-11-28 16:44:40 -0800242void bte_main_hci_send(BT_HDR* p_msg, uint16_t event) {
243 uint16_t sub_event = event & BT_SUB_EVT_MASK; /* local controller ID */
The Android Open Source Project5738f832012-12-12 16:00:35 -0800244
Myles Watson911d1ae2016-11-28 16:44:40 -0800245 p_msg->event = event;
The Android Open Source Project5738f832012-12-12 16:00:35 -0800246
Myles Watson911d1ae2016-11-28 16:44:40 -0800247 if ((sub_event == LOCAL_BR_EDR_CONTROLLER_ID) ||
248 (sub_event == LOCAL_BLE_CONTROLLER_ID)) {
249 hci->transmit_downward(event, p_msg);
250 } else {
251 APPL_TRACE_ERROR("Invalid Controller ID. Discarding message.");
252 osi_free(p_msg);
253 }
The Android Open Source Project5738f832012-12-12 16:00:35 -0800254}