blob: e14e3d70428d2009fb15f9cbce5e5f2b6a2d006a [file] [log] [blame]
Andre Eisenbach89ba5282016-10-13 15:45:02 -07001//
2// Copyright 2016 The Android Open Source Project
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15//
16
17#define LOG_TAG "android.hardware.bluetooth@1.0-impl"
Myles Watson9cec0e32017-03-16 16:23:23 -070018#include "bluetooth_hci.h"
19
Steven Moreland85d95ed2017-04-11 12:22:27 -070020#include <log/log.h>
Andre Eisenbach89ba5282016-10-13 15:45:02 -070021
Andre Eisenbach89ba5282016-10-13 15:45:02 -070022#include "vendor_interface.h"
23
24namespace android {
25namespace hardware {
26namespace bluetooth {
27namespace V1_0 {
28namespace implementation {
29
30static const uint8_t HCI_DATA_TYPE_COMMAND = 1;
31static const uint8_t HCI_DATA_TYPE_ACL = 2;
32static const uint8_t HCI_DATA_TYPE_SCO = 3;
33
Andre Eisenbach9f8931c2017-03-16 22:19:19 -070034class BluetoothDeathRecipient : public hidl_death_recipient {
35 public:
36 BluetoothDeathRecipient(const sp<IBluetoothHci> hci) : mHci(hci) {}
37
38 virtual void serviceDied(
39 uint64_t /*cookie*/,
40 const wp<::android::hidl::base::V1_0::IBase>& /*who*/) {
41 ALOGE("BluetoothDeathRecipient::serviceDied - Bluetooth service died");
Myles Watson9cec0e32017-03-16 16:23:23 -070042 has_died_ = true;
Andre Eisenbach9f8931c2017-03-16 22:19:19 -070043 mHci->close();
44 }
45 sp<IBluetoothHci> mHci;
Myles Watson9cec0e32017-03-16 16:23:23 -070046 bool getHasDied() const { return has_died_; }
47 void setHasDied(bool has_died) { has_died_ = has_died; }
48
49 private:
50 bool has_died_;
Andre Eisenbach9f8931c2017-03-16 22:19:19 -070051};
52
Martijn Coenen678af7f2017-02-23 17:25:18 +010053BluetoothHci::BluetoothHci()
Myles Watson9cec0e32017-03-16 16:23:23 -070054 : death_recipient_(new BluetoothDeathRecipient(this)) {}
Martijn Coenen678af7f2017-02-23 17:25:18 +010055
Andre Eisenbach9041d972017-01-17 18:23:12 -080056Return<void> BluetoothHci::initialize(
Andre Eisenbach89ba5282016-10-13 15:45:02 -070057 const ::android::sp<IBluetoothHciCallbacks>& cb) {
Myles Watson9cec0e32017-03-16 16:23:23 -070058 ALOGI("BluetoothHci::initialize()");
59 if (cb == nullptr) {
60 ALOGE("cb == nullptr! -> Unable to call initializationComplete(ERR)");
61 return Void();
62 }
63
64 death_recipient_->setHasDied(false);
65 cb->linkToDeath(death_recipient_, 0);
Andre Eisenbach89ba5282016-10-13 15:45:02 -070066
67 bool rc = VendorInterface::Initialize(
Myles Watson9cec0e32017-03-16 16:23:23 -070068 [cb](bool status) {
69 auto hidl_status = cb->initializationComplete(
Andre Eisenbach9041d972017-01-17 18:23:12 -080070 status ? Status::SUCCESS : Status::INITIALIZATION_ERROR);
Andre Eisenbach9f8931c2017-03-16 22:19:19 -070071 if (!hidl_status.isOk()) {
72 ALOGE("VendorInterface -> Unable to call initializationComplete()");
73 }
Andre Eisenbach9041d972017-01-17 18:23:12 -080074 },
Myles Watson9cec0e32017-03-16 16:23:23 -070075 [cb](const hidl_vec<uint8_t>& packet) {
76 auto hidl_status = cb->hciEventReceived(packet);
Andre Eisenbach9f8931c2017-03-16 22:19:19 -070077 if (!hidl_status.isOk()) {
78 ALOGE("VendorInterface -> Unable to call hciEventReceived()");
79 }
Zach Johnson917efb12017-02-26 23:46:05 -080080 },
Myles Watson9cec0e32017-03-16 16:23:23 -070081 [cb](const hidl_vec<uint8_t>& packet) {
82 auto hidl_status = cb->aclDataReceived(packet);
Andre Eisenbach9f8931c2017-03-16 22:19:19 -070083 if (!hidl_status.isOk()) {
84 ALOGE("VendorInterface -> Unable to call aclDataReceived()");
85 }
Zach Johnson917efb12017-02-26 23:46:05 -080086 },
Myles Watson9cec0e32017-03-16 16:23:23 -070087 [cb](const hidl_vec<uint8_t>& packet) {
88 auto hidl_status = cb->scoDataReceived(packet);
Andre Eisenbach9f8931c2017-03-16 22:19:19 -070089 if (!hidl_status.isOk()) {
90 ALOGE("VendorInterface -> Unable to call scoDataReceived()");
91 }
Andre Eisenbach89ba5282016-10-13 15:45:02 -070092 });
Andre Eisenbach9f8931c2017-03-16 22:19:19 -070093 if (!rc) {
Myles Watson9cec0e32017-03-16 16:23:23 -070094 auto hidl_status = cb->initializationComplete(Status::INITIALIZATION_ERROR);
Andre Eisenbach9f8931c2017-03-16 22:19:19 -070095 if (!hidl_status.isOk()) {
96 ALOGE("VendorInterface -> Unable to call initializationComplete(ERR)");
97 }
98 }
Myles Watson9cec0e32017-03-16 16:23:23 -070099
100 unlink_cb_ = [cb](sp<BluetoothDeathRecipient>& death_recipient) {
101 if (death_recipient->getHasDied())
102 ALOGI("Skipping unlink call, service died.");
103 else
104 cb->unlinkToDeath(death_recipient);
105 };
106
Andre Eisenbach9041d972017-01-17 18:23:12 -0800107 return Void();
Andre Eisenbach89ba5282016-10-13 15:45:02 -0700108}
109
110Return<void> BluetoothHci::close() {
Myles Watson9cec0e32017-03-16 16:23:23 -0700111 ALOGI("BluetoothHci::close()");
112 unlink_cb_(death_recipient_);
Andre Eisenbach89ba5282016-10-13 15:45:02 -0700113 VendorInterface::Shutdown();
114 return Void();
115}
116
117Return<void> BluetoothHci::sendHciCommand(const hidl_vec<uint8_t>& command) {
118 sendDataToController(HCI_DATA_TYPE_COMMAND, command);
119 return Void();
120}
121
122Return<void> BluetoothHci::sendAclData(const hidl_vec<uint8_t>& data) {
123 sendDataToController(HCI_DATA_TYPE_ACL, data);
124 return Void();
125}
126
127Return<void> BluetoothHci::sendScoData(const hidl_vec<uint8_t>& data) {
128 sendDataToController(HCI_DATA_TYPE_SCO, data);
129 return Void();
130}
131
132void BluetoothHci::sendDataToController(const uint8_t type,
133 const hidl_vec<uint8_t>& data) {
Myles Watsondf765ea2017-01-30 09:07:37 -0800134 VendorInterface::get()->Send(type, data.data(), data.size());
Andre Eisenbach89ba5282016-10-13 15:45:02 -0700135}
136
137IBluetoothHci* HIDL_FETCH_IBluetoothHci(const char* /* name */) {
138 return new BluetoothHci();
139}
140
141} // namespace implementation
142} // namespace V1_0
143} // namespace bluetooth
144} // namespace hardware
145} // namespace android