2013-10-21 18:27:21 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2013 Intel 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 <stdbool.h>
|
|
|
|
#include <stddef.h>
|
2013-10-25 23:52:06 +08:00
|
|
|
#include <string.h>
|
2013-10-21 18:27:21 +08:00
|
|
|
|
|
|
|
#include "hal-log.h"
|
|
|
|
#include "hal.h"
|
2013-10-25 23:52:04 +08:00
|
|
|
#include "hal-msg.h"
|
2013-10-25 23:52:06 +08:00
|
|
|
#include "hal-ipc.h"
|
2013-10-21 18:27:21 +08:00
|
|
|
|
2013-10-22 21:24:55 +08:00
|
|
|
static const btav_callbacks_t *cbs = NULL;
|
2013-10-21 18:27:21 +08:00
|
|
|
|
|
|
|
static bool interface_ready(void)
|
|
|
|
{
|
|
|
|
return cbs != NULL;
|
|
|
|
}
|
|
|
|
|
2013-11-14 18:18:15 +08:00
|
|
|
static void handle_conn_state(void *buf)
|
2013-10-25 23:52:04 +08:00
|
|
|
{
|
2013-11-14 18:18:15 +08:00
|
|
|
struct hal_ev_a2dp_conn_state *ev = buf;
|
2013-10-25 23:52:04 +08:00
|
|
|
|
|
|
|
if (cbs->connection_state_cb)
|
|
|
|
cbs->connection_state_cb(ev->state,
|
|
|
|
(bt_bdaddr_t *) (ev->bdaddr));
|
|
|
|
}
|
|
|
|
|
2013-10-25 23:52:05 +08:00
|
|
|
static void handle_audio_state(void *buf)
|
|
|
|
{
|
2013-11-07 23:32:05 +08:00
|
|
|
struct hal_ev_a2dp_audio_state *ev = buf;
|
2013-10-25 23:52:05 +08:00
|
|
|
|
|
|
|
if (cbs->audio_state_cb)
|
|
|
|
cbs->audio_state_cb(ev->state, (bt_bdaddr_t *)(ev->bdaddr));
|
|
|
|
}
|
|
|
|
|
2013-10-25 23:52:03 +08:00
|
|
|
/* will be called from notification thread context */
|
2013-11-13 17:25:25 +08:00
|
|
|
void bt_notify_a2dp(uint8_t opcode, void *buf, uint16_t len)
|
2013-10-25 23:52:03 +08:00
|
|
|
{
|
|
|
|
if (!interface_ready())
|
|
|
|
return;
|
|
|
|
|
|
|
|
switch (opcode) {
|
2013-11-14 18:18:15 +08:00
|
|
|
case HAL_EV_A2DP_CONN_STATE:
|
|
|
|
handle_conn_state(buf);
|
2013-10-25 23:52:04 +08:00
|
|
|
break;
|
2013-11-07 23:32:05 +08:00
|
|
|
case HAL_EV_A2DP_AUDIO_STATE:
|
2013-10-25 23:52:05 +08:00
|
|
|
handle_audio_state(buf);
|
|
|
|
break;
|
2013-10-25 23:52:03 +08:00
|
|
|
default:
|
|
|
|
DBG("Unhandled callback opcode=0x%x", opcode);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-07 23:32:07 +08:00
|
|
|
static bt_status_t a2dp_connect(bt_bdaddr_t *bd_addr)
|
2013-10-21 18:27:21 +08:00
|
|
|
{
|
2013-11-07 23:32:05 +08:00
|
|
|
struct hal_cmd_a2dp_connect cmd;
|
2013-10-25 23:52:06 +08:00
|
|
|
|
2013-10-21 18:27:21 +08:00
|
|
|
DBG("");
|
|
|
|
|
|
|
|
if (!interface_ready())
|
|
|
|
return BT_STATUS_NOT_READY;
|
|
|
|
|
2013-10-25 23:52:06 +08:00
|
|
|
memcpy(cmd.bdaddr, bd_addr, sizeof(cmd.bdaddr));
|
2013-10-21 18:27:21 +08:00
|
|
|
|
2013-11-07 23:32:05 +08:00
|
|
|
return hal_ipc_cmd(HAL_SERVICE_ID_A2DP, HAL_OP_A2DP_CONNECT,
|
2013-10-25 23:52:06 +08:00
|
|
|
sizeof(cmd), &cmd, NULL, NULL, NULL);
|
2013-10-21 18:27:21 +08:00
|
|
|
}
|
|
|
|
|
2013-11-07 23:32:07 +08:00
|
|
|
static bt_status_t disconnect(bt_bdaddr_t *bd_addr)
|
2013-10-21 18:27:21 +08:00
|
|
|
{
|
2013-11-07 23:32:05 +08:00
|
|
|
struct hal_cmd_a2dp_disconnect cmd;
|
2013-10-25 23:52:07 +08:00
|
|
|
|
2013-10-21 18:27:21 +08:00
|
|
|
DBG("");
|
|
|
|
|
|
|
|
if (!interface_ready())
|
|
|
|
return BT_STATUS_NOT_READY;
|
|
|
|
|
2013-10-25 23:52:07 +08:00
|
|
|
memcpy(cmd.bdaddr, bd_addr, sizeof(cmd.bdaddr));
|
2013-10-21 18:27:21 +08:00
|
|
|
|
2013-11-07 23:32:05 +08:00
|
|
|
return hal_ipc_cmd(HAL_SERVICE_ID_A2DP, HAL_OP_A2DP_DISCONNECT,
|
2013-10-25 23:52:07 +08:00
|
|
|
sizeof(cmd), &cmd, NULL, NULL, NULL);
|
2013-10-21 18:27:21 +08:00
|
|
|
}
|
|
|
|
|
2013-11-07 23:32:07 +08:00
|
|
|
static bt_status_t init(btav_callbacks_t *callbacks)
|
2013-10-21 18:27:21 +08:00
|
|
|
{
|
2013-11-14 18:18:16 +08:00
|
|
|
struct hal_cmd_register_module cmd;
|
|
|
|
|
2013-10-21 18:27:21 +08:00
|
|
|
DBG("");
|
|
|
|
|
|
|
|
cbs = callbacks;
|
|
|
|
|
2013-11-14 18:18:16 +08:00
|
|
|
cmd.service_id = HAL_SERVICE_ID_A2DP;
|
2013-10-21 18:27:21 +08:00
|
|
|
|
2013-11-14 18:18:16 +08:00
|
|
|
return hal_ipc_cmd(HAL_SERVICE_ID_CORE, HAL_OP_REGISTER_MODULE,
|
|
|
|
sizeof(cmd), &cmd, 0, NULL, NULL);
|
2013-10-21 18:27:21 +08:00
|
|
|
}
|
|
|
|
|
2013-11-07 23:32:07 +08:00
|
|
|
static void cleanup()
|
2013-10-21 18:27:21 +08:00
|
|
|
{
|
|
|
|
DBG("");
|
|
|
|
|
|
|
|
if (!interface_ready())
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* TODO: disable service */
|
|
|
|
|
|
|
|
cbs = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static btav_interface_t iface = {
|
|
|
|
.size = sizeof(iface),
|
2013-11-07 23:32:07 +08:00
|
|
|
.init = init,
|
|
|
|
.connect = a2dp_connect,
|
|
|
|
.disconnect = disconnect,
|
|
|
|
.cleanup = cleanup
|
2013-10-21 18:27:21 +08:00
|
|
|
};
|
|
|
|
|
2013-11-07 23:32:07 +08:00
|
|
|
btav_interface_t *bt_get_a2dp_interface()
|
2013-10-21 18:27:21 +08:00
|
|
|
{
|
|
|
|
return &iface;
|
|
|
|
}
|