2016-10-14 00:45:02 +02:00
|
|
|
//
|
|
|
|
// Copyright 2016 The Android Open Source Project
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
|
|
|
|
#define LOG_TAG "android.hardware.bluetooth@1.0-impl"
|
|
|
|
#include <utils/Log.h>
|
|
|
|
|
|
|
|
#include "bluetooth_hci.h"
|
|
|
|
#include "vendor_interface.h"
|
|
|
|
|
|
|
|
namespace android {
|
|
|
|
namespace hardware {
|
|
|
|
namespace bluetooth {
|
|
|
|
namespace V1_0 {
|
|
|
|
namespace implementation {
|
|
|
|
|
|
|
|
static const uint8_t HCI_DATA_TYPE_COMMAND = 1;
|
|
|
|
static const uint8_t HCI_DATA_TYPE_ACL = 2;
|
|
|
|
static const uint8_t HCI_DATA_TYPE_SCO = 3;
|
|
|
|
|
2017-02-23 17:25:18 +01:00
|
|
|
BluetoothHci::BluetoothHci()
|
|
|
|
: deathRecipient(new BluetoothDeathRecipient(this)) {}
|
|
|
|
|
2017-01-18 03:23:12 +01:00
|
|
|
Return<void> BluetoothHci::initialize(
|
2016-10-14 00:45:02 +02:00
|
|
|
const ::android::sp<IBluetoothHciCallbacks>& cb) {
|
|
|
|
ALOGW("BluetoothHci::initialize()");
|
2017-02-23 17:25:18 +01:00
|
|
|
cb->linkToDeath(deathRecipient, 0);
|
2016-10-14 00:45:02 +02:00
|
|
|
event_cb_ = cb;
|
|
|
|
|
|
|
|
bool rc = VendorInterface::Initialize(
|
2017-01-18 03:23:12 +01:00
|
|
|
[this](bool status) {
|
|
|
|
event_cb_->initializationComplete(
|
|
|
|
status ? Status::SUCCESS : Status::INITIALIZATION_ERROR);
|
|
|
|
},
|
2016-10-14 00:45:02 +02:00
|
|
|
[this](HciPacketType type, const hidl_vec<uint8_t>& packet) {
|
|
|
|
switch (type) {
|
|
|
|
case HCI_PACKET_TYPE_EVENT:
|
|
|
|
event_cb_->hciEventReceived(packet);
|
|
|
|
break;
|
|
|
|
case HCI_PACKET_TYPE_ACL_DATA:
|
|
|
|
event_cb_->aclDataReceived(packet);
|
|
|
|
break;
|
|
|
|
case HCI_PACKET_TYPE_SCO_DATA:
|
|
|
|
event_cb_->scoDataReceived(packet);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ALOGE("%s Unexpected event type %d", __func__, type);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
});
|
2017-01-18 03:23:12 +01:00
|
|
|
if (!rc) event_cb_->initializationComplete(Status::INITIALIZATION_ERROR);
|
|
|
|
return Void();
|
2016-10-14 00:45:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Return<void> BluetoothHci::close() {
|
|
|
|
ALOGW("BluetoothHci::close()");
|
2017-02-23 17:25:18 +01:00
|
|
|
event_cb_->unlinkToDeath(deathRecipient);
|
2016-10-14 00:45:02 +02:00
|
|
|
VendorInterface::Shutdown();
|
|
|
|
return Void();
|
|
|
|
}
|
|
|
|
|
|
|
|
Return<void> BluetoothHci::sendHciCommand(const hidl_vec<uint8_t>& command) {
|
|
|
|
sendDataToController(HCI_DATA_TYPE_COMMAND, command);
|
|
|
|
return Void();
|
|
|
|
}
|
|
|
|
|
|
|
|
Return<void> BluetoothHci::sendAclData(const hidl_vec<uint8_t>& data) {
|
|
|
|
sendDataToController(HCI_DATA_TYPE_ACL, data);
|
|
|
|
return Void();
|
|
|
|
}
|
|
|
|
|
|
|
|
Return<void> BluetoothHci::sendScoData(const hidl_vec<uint8_t>& data) {
|
|
|
|
sendDataToController(HCI_DATA_TYPE_SCO, data);
|
|
|
|
return Void();
|
|
|
|
}
|
|
|
|
|
|
|
|
void BluetoothHci::sendDataToController(const uint8_t type,
|
|
|
|
const hidl_vec<uint8_t>& data) {
|
2017-01-30 18:07:37 +01:00
|
|
|
VendorInterface::get()->Send(type, data.data(), data.size());
|
2016-10-14 00:45:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
IBluetoothHci* HIDL_FETCH_IBluetoothHci(const char* /* name */) {
|
|
|
|
return new BluetoothHci();
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace implementation
|
|
|
|
} // namespace V1_0
|
|
|
|
} // namespace bluetooth
|
|
|
|
} // namespace hardware
|
|
|
|
} // namespace android
|