13e4f9b6b2
Gregory Nutt is the copyright holder for those files and he has submitted the SGA as a result we can migrate the licenses to Apache. Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
433 lines
13 KiB
C
433 lines
13 KiB
C
/****************************************************************************
|
|
* drivers/wireless/bluetooth/bt_uart_shim.c
|
|
*
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
* this work for additional information regarding copyright ownership. The
|
|
* ASF licenses this file to you 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.
|
|
*
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Included Files
|
|
****************************************************************************/
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
#include <debug.h>
|
|
#include <errno.h>
|
|
#include <fcntl.h>
|
|
#include <poll.h>
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <sys/stat.h>
|
|
#include <sys/types.h>
|
|
#include <termios.h>
|
|
#include <unistd.h>
|
|
|
|
#include <nuttx/fs/ioctl.h>
|
|
#include <nuttx/spinlock.h>
|
|
#include <nuttx/kmalloc.h>
|
|
#include <nuttx/kthread.h>
|
|
#include <nuttx/semaphore.h>
|
|
#include <nuttx/serial/tioctl.h>
|
|
#include <nuttx/wireless/bluetooth/bt_uart_shim.h>
|
|
|
|
/****************************************************************************
|
|
* Private Types
|
|
****************************************************************************/
|
|
|
|
/* This structure is the variable state of the binding to the UART */
|
|
|
|
struct hciuart_state_s
|
|
{
|
|
/* Registered Rx callback */
|
|
|
|
btuart_rxcallback_t callback; /* Rx callback function */
|
|
FAR void *arg; /* Rx callback argument */
|
|
|
|
struct file f; /* File structure */
|
|
bool enabled; /* Flag indicating that reception is enabled */
|
|
|
|
int serialmontask; /* The receive serial octets task handle */
|
|
};
|
|
|
|
struct hciuart_config_s
|
|
{
|
|
/* Setup the interface from the upper to the lower */
|
|
|
|
struct btuart_lowerhalf_s lower; /* Generic UART lower half */
|
|
struct hciuart_state_s state; /* Variable state */
|
|
};
|
|
|
|
/****************************************************************************
|
|
* Private Function Prototypes
|
|
****************************************************************************/
|
|
|
|
/* UART Lower-Half Methods */
|
|
|
|
static void hciuart_rxattach(FAR const struct btuart_lowerhalf_s *lower,
|
|
btuart_rxcallback_t callback, FAR void *arg);
|
|
static void hciuart_rxenable(FAR const struct btuart_lowerhalf_s *lower,
|
|
bool enable);
|
|
static int hciuart_setbaud(FAR const struct btuart_lowerhalf_s *lower,
|
|
uint32_t baud);
|
|
static ssize_t hciuart_read(FAR const struct btuart_lowerhalf_s *lower,
|
|
FAR void *buffer, size_t buflen);
|
|
static ssize_t hciuart_write(FAR const struct btuart_lowerhalf_s *lower,
|
|
FAR const void *buffer, size_t buflen);
|
|
static ssize_t hciuart_rxdrain(FAR const struct btuart_lowerhalf_s *lower);
|
|
|
|
/****************************************************************************
|
|
* Private Functions
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Name: hciuart_rxattach
|
|
*
|
|
* Description:
|
|
* Attach/detach the upper half Rx callback.
|
|
*
|
|
* rxattach() allows the upper half logic to attach a callback function
|
|
* that will be used to inform the upper half that an Rx frame is
|
|
* available. This callback will, most likely, be invoked in the
|
|
* context of an interrupt callback. The receive() method should then
|
|
* be invoked in order to receive the obtain the Rx frame data.
|
|
*
|
|
****************************************************************************/
|
|
|
|
static void
|
|
hciuart_rxattach(FAR const struct btuart_lowerhalf_s *lower,
|
|
btuart_rxcallback_t callback, FAR void *arg)
|
|
{
|
|
struct hciuart_config_s *config = (FAR struct hciuart_config_s *)lower;
|
|
struct hciuart_state_s *state;
|
|
irqstate_t flags;
|
|
|
|
state = &config->state;
|
|
|
|
/* If the callback is NULL, then we are detaching */
|
|
|
|
flags = spin_lock_irqsave(NULL);
|
|
if (callback == NULL)
|
|
{
|
|
/* Disable Rx callbacks and detach the Rx callback */
|
|
|
|
state->callback = NULL;
|
|
state->arg = NULL;
|
|
}
|
|
|
|
/* Otherwise, we are attaching */
|
|
|
|
else
|
|
{
|
|
state->arg = arg;
|
|
state->callback = callback;
|
|
}
|
|
|
|
spin_unlock_irqrestore(NULL, flags);
|
|
}
|
|
|
|
/****************************************************************************
|
|
* Name: hciuart_rxenable
|
|
*
|
|
* Description:
|
|
* Enable/disable RX callbacks from the HCI UART.
|
|
*
|
|
* hciuart_rxenable() may be used to enable or disable callback events.
|
|
* This probably translates to enabling and disabled Rx interrupts at
|
|
* the UART. NOTE: Rx event notification should be done sparingly:
|
|
* Rx data overrun may occur when Rx events are disabled!
|
|
*
|
|
****************************************************************************/
|
|
|
|
static void hciuart_rxenable(FAR const struct btuart_lowerhalf_s *lower,
|
|
bool enable)
|
|
{
|
|
FAR struct hciuart_config_s *config = (FAR struct hciuart_config_s *)lower;
|
|
FAR struct hciuart_state_s *s = &config->state;
|
|
|
|
irqstate_t flags = spin_lock_irqsave(NULL);
|
|
if (enable != s->enabled)
|
|
{
|
|
wlinfo(enable ? "Enable\n" : "Disable\n");
|
|
}
|
|
|
|
s->enabled = enable;
|
|
|
|
spin_unlock_irqrestore(NULL, flags);
|
|
}
|
|
|
|
/****************************************************************************
|
|
* Name: hciuart_setbaud
|
|
*
|
|
* Description:
|
|
* The HCI UART comes up with some initial BAUD rate. Some support
|
|
* auto-BAUD detection, some support writing a configuration file to
|
|
* select the initial BAUD. The simplest strategy, however, is simply
|
|
* to use the HCI UART's default initial BAUD to perform the basic
|
|
* bring up, then send a vendor-specific command to increase the HCI
|
|
* UARTs BAUD. This method then may be used to adjust the lower half
|
|
* driver to the new HCI UART BAUD.
|
|
*
|
|
****************************************************************************/
|
|
|
|
static int
|
|
hciuart_setbaud(FAR const struct btuart_lowerhalf_s *lower, uint32_t baud)
|
|
{
|
|
#ifdef CONFIG_SERIAL_TERMIOS
|
|
FAR struct hciuart_config_s *config = (FAR struct hciuart_config_s *)lower;
|
|
FAR struct hciuart_state_s *state = &config->state;
|
|
struct termios tio;
|
|
int ret;
|
|
|
|
ret = file_ioctl(&state->f, TCGETS, (long unsigned int)&tio);
|
|
if (ret)
|
|
{
|
|
wlerr("ERROR during TCGETS\n");
|
|
return ret;
|
|
}
|
|
|
|
if (baud != 0)
|
|
{
|
|
cfsetspeed(&tio, baud);
|
|
}
|
|
|
|
/* To be a H4 interface, CTS/RTS are needed */
|
|
|
|
tio.c_cflag |= CRTS_IFLOW | CCTS_OFLOW;
|
|
|
|
ret = file_ioctl(&state->f, TCSETS, (unsigned long int)&tio);
|
|
if (ret)
|
|
{
|
|
wlerr("ERROR during TCSETS, does UART support CTS/RTS?\n");
|
|
return ret;
|
|
}
|
|
|
|
return OK;
|
|
#else
|
|
return -ENOSYS;
|
|
#endif
|
|
}
|
|
|
|
/****************************************************************************
|
|
* Name: hciuart_read
|
|
*
|
|
* Description:
|
|
* Read UART data.
|
|
*
|
|
* hciuart_read() after receipt of a callback notifying the upper half of
|
|
* the availability of Rx frame, the upper half may call the receive()
|
|
* method in order to obtain the buffered Rx frame data.
|
|
*
|
|
****************************************************************************/
|
|
|
|
static ssize_t
|
|
hciuart_read(FAR const struct btuart_lowerhalf_s *lower,
|
|
FAR void *buffer, size_t buflen)
|
|
{
|
|
FAR struct hciuart_config_s *config = (FAR struct hciuart_config_s *)lower;
|
|
FAR struct hciuart_state_s *state = &config->state;
|
|
|
|
wlinfo("config %p buffer %p buflen %lu\n",
|
|
config, buffer, (unsigned long)buflen);
|
|
|
|
/* NOTE: This assumes that the caller has exclusive access to the Rx
|
|
* buffer, i.e., one lower half instance can server only one upper half!
|
|
*/
|
|
|
|
return file_read(&state->f, buffer, buflen);
|
|
}
|
|
|
|
/****************************************************************************
|
|
* Name: hciuart_write
|
|
*
|
|
* Description:
|
|
* Write UART data.
|
|
*
|
|
* hciuart_write() will add the outgoing frame to the Tx buffer and will
|
|
* return immediately. This function may block only in the event that
|
|
* there is insufficient buffer space to hold the Tx frame data. In that
|
|
* case the lower half will block until there is sufficient to buffer
|
|
* the entire outgoing packet.
|
|
*
|
|
****************************************************************************/
|
|
|
|
static ssize_t
|
|
hciuart_write(FAR const struct btuart_lowerhalf_s *lower,
|
|
FAR const void *buffer, size_t buflen)
|
|
{
|
|
FAR struct hciuart_config_s *config = (FAR struct hciuart_config_s *)lower;
|
|
FAR struct hciuart_state_s *state = &config->state;
|
|
|
|
wlinfo("config %p buffer %p buflen %lu\n",
|
|
config, buffer, (unsigned long)buflen);
|
|
|
|
return file_write(&state->f, buffer, buflen);
|
|
}
|
|
|
|
/****************************************************************************
|
|
* Name: hciuart_rxdrain
|
|
*
|
|
* Description:
|
|
* Flush/drain all buffered RX data
|
|
*
|
|
****************************************************************************/
|
|
|
|
static ssize_t hciuart_rxdrain(FAR const struct btuart_lowerhalf_s *lower)
|
|
{
|
|
FAR struct hciuart_config_s *config = (FAR struct hciuart_config_s *)lower;
|
|
FAR struct hciuart_state_s *s = &config->state;
|
|
|
|
return file_ioctl(&s->f, TCDRN, 0);
|
|
}
|
|
|
|
/****************************************************************************
|
|
* Name: hcicollecttask
|
|
*
|
|
* Description:
|
|
* Loop and alert when serial data arrive
|
|
*
|
|
****************************************************************************/
|
|
|
|
static int hcicollecttask(int argc, FAR char **argv)
|
|
{
|
|
FAR struct hciuart_config_s *n;
|
|
FAR struct hciuart_state_s *s;
|
|
struct pollfd p;
|
|
|
|
n = (FAR struct hciuart_config_s *)
|
|
((uintptr_t)strtoul(argv[1], NULL, 0));
|
|
s = &n->state;
|
|
|
|
/* Put materials into poll structure */
|
|
|
|
p.ptr = &s->f;
|
|
p.events = POLLIN | POLLFILE;
|
|
|
|
for (; ; )
|
|
{
|
|
/* Wait for data to arrive */
|
|
|
|
int ret = nx_poll(&p, 1, -1);
|
|
if (ret < 0)
|
|
{
|
|
wlwarn("Poll interrupted %d\n", ret);
|
|
continue;
|
|
}
|
|
|
|
wlinfo("Poll completed %d\n", p.revents);
|
|
|
|
/* Given the nature of file_poll, there are multiple reasons why
|
|
* we might be here, so make sure we only consider the read.
|
|
*/
|
|
|
|
if (p.revents & POLLIN)
|
|
{
|
|
if (!s->enabled)
|
|
{
|
|
/* We aren't expected to be listening, so drop these data */
|
|
|
|
wlwarn("Dropping data\n");
|
|
hciuart_rxdrain(&n->lower);
|
|
}
|
|
else
|
|
{
|
|
if (s->callback != NULL)
|
|
{
|
|
wlinfo("Activating callback\n");
|
|
s->callback(&n->lower, s->arg);
|
|
}
|
|
else
|
|
{
|
|
wlwarn("Dropping data (no CB)\n");
|
|
hciuart_rxdrain(&n->lower);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return OK;
|
|
}
|
|
|
|
/****************************************************************************
|
|
* Public Functions
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Name: btuart_shim_getdevice
|
|
*
|
|
* Description:
|
|
* Get a pointer to the device that will be used to communicate with the
|
|
* regular serial port on the HCI.
|
|
*
|
|
* Input Parameters:
|
|
* Entry in filesystem hierarchy for device
|
|
*
|
|
* Returned Value:
|
|
* Pointer to device interface
|
|
*
|
|
****************************************************************************/
|
|
|
|
FAR struct btuart_lowerhalf_s *btuart_shim_getdevice(FAR const char *path)
|
|
{
|
|
FAR struct hciuart_config_s *n;
|
|
FAR struct hciuart_state_s *s;
|
|
FAR char *argv[2];
|
|
char arg1[16];
|
|
int ret;
|
|
|
|
/* Get the memory for this shim instance */
|
|
|
|
n = (FAR struct hciuart_config_s *)
|
|
kmm_zalloc(sizeof(struct hciuart_config_s));
|
|
|
|
if (!n)
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
s = &n->state;
|
|
|
|
ret = file_open(&s->f, path, O_RDWR | O_BINARY);
|
|
if (ret < 0)
|
|
{
|
|
kmm_free(n);
|
|
return NULL;
|
|
}
|
|
|
|
/* Hook the routines in */
|
|
|
|
n->lower.rxattach = hciuart_rxattach;
|
|
n->lower.rxenable = hciuart_rxenable;
|
|
n->lower.setbaud = hciuart_setbaud;
|
|
n->lower.read = hciuart_read;
|
|
n->lower.write = hciuart_write;
|
|
n->lower.rxdrain = hciuart_rxdrain;
|
|
|
|
/* Create the monitor thread */
|
|
|
|
snprintf(arg1, 16, "%p", n);
|
|
argv[0] = arg1;
|
|
argv[1] = NULL;
|
|
|
|
s->serialmontask = kthread_create("BT HCI Rx",
|
|
CONFIG_BLUETOOTH_TXCONN_PRIORITY,
|
|
CONFIG_DEFAULT_TASK_STACKSIZE,
|
|
hcicollecttask, argv);
|
|
|
|
return (FAR struct btuart_lowerhalf_s *)n;
|
|
}
|