2013-10-17 16:26:46 +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-28 20:09:05 +08:00
|
|
|
#include <string.h>
|
2013-10-17 16:26:46 +08:00
|
|
|
|
2013-10-21 01:45:44 +08:00
|
|
|
#include "hal-log.h"
|
2013-10-17 16:26:46 +08:00
|
|
|
#include "hal.h"
|
2013-10-28 20:09:02 +08:00
|
|
|
#include "hal-msg.h"
|
|
|
|
#include "hal-ipc.h"
|
2013-10-17 16:26:46 +08:00
|
|
|
|
2013-10-22 21:16:14 +08:00
|
|
|
static const btpan_callbacks_t *cbs = NULL;
|
2013-10-17 16:26:46 +08:00
|
|
|
|
|
|
|
static bool interface_ready(void)
|
|
|
|
{
|
2013-10-22 21:16:14 +08:00
|
|
|
return cbs != NULL;
|
2013-10-17 16:26:46 +08:00
|
|
|
}
|
|
|
|
|
2013-11-13 17:25:26 +08:00
|
|
|
void bt_notify_pan(uint8_t opcode, void *buf, uint16_t len)
|
|
|
|
{
|
|
|
|
if (!interface_ready())
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-10-22 21:16:14 +08:00
|
|
|
static bt_status_t pan_enable(int local_role)
|
2013-10-17 16:26:46 +08:00
|
|
|
{
|
2013-10-28 20:09:03 +08:00
|
|
|
struct hal_cmd_pan_enable cmd;
|
|
|
|
|
2013-10-21 01:45:44 +08:00
|
|
|
DBG("");
|
2013-10-17 16:26:46 +08:00
|
|
|
|
|
|
|
if (!interface_ready())
|
|
|
|
return BT_STATUS_NOT_READY;
|
|
|
|
|
2013-10-28 20:09:03 +08:00
|
|
|
cmd.local_role = local_role;
|
|
|
|
|
|
|
|
return hal_ipc_cmd(HAL_SERVICE_ID_PAN, HAL_OP_PAN_ENABLE,
|
|
|
|
sizeof(cmd), &cmd, 0, NULL, NULL);
|
2013-10-17 16:26:46 +08:00
|
|
|
}
|
|
|
|
|
2013-10-22 21:16:14 +08:00
|
|
|
static int pan_get_local_role(void)
|
2013-10-17 16:26:46 +08:00
|
|
|
{
|
2013-10-28 20:09:04 +08:00
|
|
|
struct hal_rsp_pan_get_role rsp;
|
|
|
|
size_t len = sizeof(rsp);
|
|
|
|
bt_status_t status;
|
|
|
|
|
2013-10-21 01:45:44 +08:00
|
|
|
DBG("");
|
2013-10-17 16:26:46 +08:00
|
|
|
|
|
|
|
if (!interface_ready())
|
|
|
|
return BTPAN_ROLE_NONE;
|
|
|
|
|
2013-10-28 20:09:04 +08:00
|
|
|
status = hal_ipc_cmd(HAL_SERVICE_ID_PAN, HAL_OP_PAN_GET_ROLE, 0, NULL,
|
|
|
|
&len, &rsp, NULL);
|
|
|
|
if (status != BT_STATUS_SUCCESS)
|
|
|
|
return BTPAN_ROLE_NONE;
|
|
|
|
|
|
|
|
return rsp.local_role;
|
2013-10-17 16:26:46 +08:00
|
|
|
}
|
|
|
|
|
2013-10-22 21:16:14 +08:00
|
|
|
static bt_status_t pan_connect(const bt_bdaddr_t *bd_addr, int local_role,
|
2013-10-17 16:26:46 +08:00
|
|
|
int remote_role)
|
|
|
|
{
|
2013-10-28 20:09:05 +08:00
|
|
|
struct hal_cmd_pan_connect cmd;
|
|
|
|
|
2013-10-21 01:45:44 +08:00
|
|
|
DBG("");
|
2013-10-17 16:26:46 +08:00
|
|
|
|
|
|
|
if (!interface_ready())
|
|
|
|
return BT_STATUS_NOT_READY;
|
|
|
|
|
2013-10-28 20:09:05 +08:00
|
|
|
memcpy(cmd.bdaddr, bd_addr, sizeof(cmd.bdaddr));
|
|
|
|
cmd.local_role = local_role;
|
|
|
|
cmd.remote_role = remote_role;
|
2013-10-17 16:26:46 +08:00
|
|
|
|
2013-10-28 20:09:05 +08:00
|
|
|
return hal_ipc_cmd(HAL_SERVICE_ID_PAN, HAL_OP_PAN_CONNECT,
|
|
|
|
sizeof(cmd), &cmd, 0, NULL, NULL);
|
2013-10-17 16:26:46 +08:00
|
|
|
}
|
|
|
|
|
2013-10-22 21:16:14 +08:00
|
|
|
static bt_status_t pan_disconnect(const bt_bdaddr_t *bd_addr)
|
2013-10-17 16:26:46 +08:00
|
|
|
{
|
2013-10-28 20:09:06 +08:00
|
|
|
struct hal_cmd_pan_disconnect cmd;
|
|
|
|
|
2013-10-21 01:45:44 +08:00
|
|
|
DBG("");
|
2013-10-17 16:26:46 +08:00
|
|
|
|
|
|
|
if (!interface_ready())
|
|
|
|
return BT_STATUS_NOT_READY;
|
|
|
|
|
2013-10-28 20:09:06 +08:00
|
|
|
memcpy(cmd.bdaddr, bd_addr, sizeof(cmd.bdaddr));
|
2013-10-17 16:26:46 +08:00
|
|
|
|
2013-10-28 20:09:06 +08:00
|
|
|
return hal_ipc_cmd(HAL_SERVICE_ID_PAN, HAL_OP_PAN_DISCONNECT,
|
|
|
|
sizeof(cmd), &cmd, 0, NULL, NULL);
|
2013-10-17 16:26:46 +08:00
|
|
|
}
|
|
|
|
|
2013-10-22 21:16:14 +08:00
|
|
|
static bt_status_t pan_init(const btpan_callbacks_t *callbacks)
|
2013-10-17 16:26:46 +08:00
|
|
|
{
|
2013-10-28 20:09:02 +08:00
|
|
|
struct hal_cmd_register_module cmd;
|
|
|
|
|
2013-10-21 01:45:44 +08:00
|
|
|
DBG("");
|
2013-10-17 16:26:46 +08:00
|
|
|
|
2013-10-22 21:16:14 +08:00
|
|
|
cbs = callbacks;
|
2013-10-17 16:26:46 +08:00
|
|
|
|
2013-10-28 20:09:02 +08:00
|
|
|
cmd.service_id = HAL_SERVICE_ID_PAN;
|
2013-10-17 16:26:46 +08:00
|
|
|
|
2013-10-28 20:09:02 +08:00
|
|
|
return hal_ipc_cmd(HAL_SERVICE_ID_CORE, HAL_OP_REGISTER_MODULE,
|
|
|
|
sizeof(cmd), &cmd, 0, NULL, NULL);
|
2013-10-17 16:26:46 +08:00
|
|
|
}
|
|
|
|
|
2013-10-22 21:16:14 +08:00
|
|
|
static void pan_cleanup()
|
2013-10-17 16:26:46 +08:00
|
|
|
{
|
2013-11-12 22:20:40 +08:00
|
|
|
struct hal_cmd_register_module cmd;
|
|
|
|
|
2013-10-21 01:45:44 +08:00
|
|
|
DBG("");
|
2013-10-17 16:26:46 +08:00
|
|
|
|
|
|
|
if (!interface_ready())
|
|
|
|
return;
|
|
|
|
|
2013-11-12 22:20:40 +08:00
|
|
|
cbs = NULL;
|
2013-10-17 16:26:46 +08:00
|
|
|
|
2013-11-12 22:20:40 +08:00
|
|
|
cmd.service_id = HAL_SERVICE_ID_PAN;
|
2013-10-17 16:26:46 +08:00
|
|
|
|
2013-11-12 22:20:40 +08:00
|
|
|
hal_ipc_cmd(HAL_SERVICE_ID_CORE, HAL_OP_UNREGISTER_MODULE,
|
|
|
|
sizeof(cmd), &cmd, 0, NULL, NULL);
|
2013-10-17 16:26:46 +08:00
|
|
|
}
|
|
|
|
|
2013-10-22 21:16:14 +08:00
|
|
|
static btpan_interface_t pan_if = {
|
|
|
|
.size = sizeof(pan_if),
|
|
|
|
.init = pan_init,
|
|
|
|
.enable = pan_enable,
|
|
|
|
.get_local_role = pan_get_local_role,
|
|
|
|
.connect = pan_connect,
|
|
|
|
.disconnect = pan_disconnect,
|
|
|
|
.cleanup = pan_cleanup
|
2013-10-17 16:26:46 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
btpan_interface_t *bt_get_pan_interface()
|
|
|
|
{
|
2013-10-22 21:16:14 +08:00
|
|
|
return &pan_if;
|
2013-10-17 16:26:46 +08:00
|
|
|
}
|