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-21 01:45:44 +08:00
|
|
|
#include "hal-log.h"
|
2013-10-17 16:26:46 +08:00
|
|
|
#include "hal.h"
|
|
|
|
|
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-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-21 01:45:44 +08:00
|
|
|
DBG("");
|
2013-10-17 16:26:46 +08:00
|
|
|
|
|
|
|
if (!interface_ready())
|
|
|
|
return BT_STATUS_NOT_READY;
|
|
|
|
|
|
|
|
return BT_STATUS_UNSUPPORTED;
|
|
|
|
}
|
|
|
|
|
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-21 01:45:44 +08:00
|
|
|
DBG("");
|
2013-10-17 16:26:46 +08:00
|
|
|
|
|
|
|
if (!interface_ready())
|
|
|
|
return BTPAN_ROLE_NONE;
|
|
|
|
|
|
|
|
return BTPAN_ROLE_NONE;
|
|
|
|
}
|
|
|
|
|
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-21 01:45:44 +08:00
|
|
|
DBG("");
|
2013-10-17 16:26:46 +08:00
|
|
|
|
|
|
|
if (!interface_ready())
|
|
|
|
return BT_STATUS_NOT_READY;
|
|
|
|
|
|
|
|
if (!bd_addr)
|
|
|
|
return BT_STATUS_PARM_INVALID;
|
|
|
|
|
|
|
|
return BT_STATUS_UNSUPPORTED;
|
|
|
|
}
|
|
|
|
|
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-21 01:45:44 +08:00
|
|
|
DBG("");
|
2013-10-17 16:26:46 +08:00
|
|
|
|
|
|
|
if (!interface_ready())
|
|
|
|
return BT_STATUS_NOT_READY;
|
|
|
|
|
|
|
|
if (!bd_addr)
|
|
|
|
return BT_STATUS_PARM_INVALID;
|
|
|
|
|
|
|
|
return BT_STATUS_UNSUPPORTED;
|
|
|
|
}
|
|
|
|
|
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-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
|
|
|
|
|
|
|
/* TODO: start HID Host thread */
|
|
|
|
|
|
|
|
/* TODO: enable service */
|
|
|
|
|
|
|
|
return BT_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2013-10-22 21:16:14 +08:00
|
|
|
static void pan_cleanup()
|
2013-10-17 16:26:46 +08:00
|
|
|
{
|
2013-10-21 01:45:44 +08:00
|
|
|
DBG("");
|
2013-10-17 16:26:46 +08:00
|
|
|
|
|
|
|
if (!interface_ready())
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* TODO: disable service */
|
|
|
|
|
|
|
|
/* TODO: stop PAN thread */
|
|
|
|
|
2013-10-22 21:16:14 +08:00
|
|
|
cbs = 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
|
|
|
}
|