QCA61x4 chips have supported sleep feature using In-Band-Sleep commands to enable sleep feature based on H4 protocol. After sending patch/nvm configuration is done, IBS mode will be up and running Signed-off-by: Ben Young Tae Kim <ytkim@xxxxxxxxxxxxxxxx> --- drivers/bluetooth/Kconfig | 13 + drivers/bluetooth/Makefile | 1 + drivers/bluetooth/hci_ldisc.c | 6 + drivers/bluetooth/hci_qca.c | 920 ++++++++++++++++++++++++++++++++++++++++++ drivers/bluetooth/hci_uart.h | 8 +- 5 files changed, 947 insertions(+), 1 deletion(-) create mode 100644 drivers/bluetooth/hci_qca.c diff --git a/drivers/bluetooth/Kconfig b/drivers/bluetooth/Kconfig index f580334..0bd88c9 100644 --- a/drivers/bluetooth/Kconfig +++ b/drivers/bluetooth/Kconfig @@ -155,6 +155,19 @@ config BT_HCIUART_BCM Say Y here to compile support for Broadcom protocol. +config BT_HCIUART_QCA + bool "Qualcomm Atheros protocol support" + depends on BT_HCIUART + select BT_HCIUART_H4 + select BT_QCA + help + The Qualcomm Atheros protocol supports HCI In-Band Sleep feature + over serial port interface(H4) between controller and host. + This protocol is required for UART clock control for QCA Bluetooth + devices. + + Say Y here to compile support for QCA protocol. + config BT_HCIBCM203X tristate "HCI BCM203x USB driver" depends on USB diff --git a/drivers/bluetooth/Makefile b/drivers/bluetooth/Makefile index 15a0d1d..07c9cf3 100644 --- a/drivers/bluetooth/Makefile +++ b/drivers/bluetooth/Makefile @@ -35,6 +35,7 @@ hci_uart-$(CONFIG_BT_HCIUART_ATH3K) += hci_ath.o hci_uart-$(CONFIG_BT_HCIUART_3WIRE) += hci_h5.o hci_uart-$(CONFIG_BT_HCIUART_INTEL) += hci_intel.o hci_uart-$(CONFIG_BT_HCIUART_BCM) += hci_bcm.o +hci_uart-$(CONFIG_BT_HCIUART_QCA) += hci_qca.o hci_uart-objs := $(hci_uart-y) ccflags-y += -D__CHECK_ENDIAN__ diff --git a/drivers/bluetooth/hci_ldisc.c b/drivers/bluetooth/hci_ldisc.c index 20c2ac1..0d5a05a 100644 --- a/drivers/bluetooth/hci_ldisc.c +++ b/drivers/bluetooth/hci_ldisc.c @@ -810,6 +810,9 @@ static int __init hci_uart_init(void) #ifdef CONFIG_BT_HCIUART_BCM bcm_init(); #endif +#ifdef CONFIG_BT_HCIUART_QCA + qca_init(); +#endif return 0; } @@ -839,6 +842,9 @@ static void __exit hci_uart_exit(void) #ifdef CONFIG_BT_HCIUART_BCM bcm_deinit(); #endif +#ifdef CONFIG_BT_HCIUART_QCA + qca_deinit(); +#endif /* Release tty registration of line discipline */ err = tty_unregister_ldisc(N_HCI); diff --git a/drivers/bluetooth/hci_qca.c b/drivers/bluetooth/hci_qca.c new file mode 100644 index 0000000..77a2ad0 --- /dev/null +++ b/drivers/bluetooth/hci_qca.c @@ -0,0 +1,920 @@ +/* + * Bluetooth Software UART Qualcomm protocol + * + * HCI_IBS (HCI In-Band Sleep) is Qualcomm's power management + * protocol extension to H4. + * + * Copyright (C) 2007 Texas Instruments, Inc. + * Copyright (c) 2010, 2012 The Linux Foundation. All rights reserved. + * + * Acknowledgements: + * This file is based on hci_ll.c, which was... + * Written by Ohad Ben-Cohen <ohad@xxxxxxxxxxxx> + * which was in turn based on hci_h4.c, which was written + * by Maxim Krasnyansky and Marcel Holtmann. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 + * as published by the Free Software Foundation + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * + */ + +#include <linux/module.h> +#include <linux/kernel.h> + +#include <linux/init.h> +#include <linux/sched.h> +#include <linux/types.h> +#include <linux/fcntl.h> +#include <linux/interrupt.h> +#include <linux/ptrace.h> +#include <linux/poll.h> + +#include <linux/slab.h> +#include <linux/tty.h> +#include <linux/errno.h> +#include <linux/string.h> +#include <linux/signal.h> +#include <linux/ioctl.h> +#include <linux/timer.h> +#include <linux/skbuff.h> +#include <linux/serial_core.h> + +#include <net/bluetooth/bluetooth.h> +#include <net/bluetooth/hci_core.h> + +#include "hci_uart.h" +#include "btqca.h" + +/* HCI_IBS protocol messages */ +#define HCI_IBS_SLEEP_IND 0xFE +#define HCI_IBS_WAKE_IND 0xFD +#define HCI_IBS_WAKE_ACK 0xFC +#define HCI_MAX_IBS_SIZE 10 + +/* Controller states */ +#define STATE_IN_BAND_SLEEP_ENABLED 1 + +/* HCI_IBS transmit side sleep protocol states */ +enum tx_ibs_states_e { + HCI_IBS_TX_ASLEEP, + HCI_IBS_TX_WAKING, + HCI_IBS_TX_AWAKE, +}; + +/* HCI_IBS receive side sleep protocol states */ +enum rx_states_e { + HCI_IBS_RX_ASLEEP, + HCI_IBS_RX_AWAKE, +}; + +/* HCI_IBS transmit and receive side clock state vote */ +enum hci_ibs_clock_state_vote_e { + HCI_IBS_VOTE_STATS_UPDATE, + HCI_IBS_TX_VOTE_CLOCK_ON, + HCI_IBS_TX_VOTE_CLOCK_OFF, + HCI_IBS_RX_VOTE_CLOCK_ON, + HCI_IBS_RX_VOTE_CLOCK_OFF, +}; + +static unsigned long wake_retrans = 1*100; +static unsigned long tx_idle_delay = (HZ * 2); + +struct hci_ibs_cmd { + u8 cmd; +} __packed; + +struct qca_data { + struct sk_buff *rx_skb; + struct sk_buff_head txq; + struct sk_buff_head tx_wait_q; /* HCI_IBS wait queue */ + spinlock_t hci_ibs_lock; /* HCI_IBS state lock */ + unsigned long tx_ibs_state; /* HCI_IBS transmit side power state*/ + unsigned long rx_ibs_state; /* HCI_IBS receive side power state */ + unsigned long tx_vote; /* clock must be on for TX */ + unsigned long rx_vote; /* clock must be on for RX */ + struct timer_list tx_idle_timer; + struct timer_list wake_retrans_timer; + struct workqueue_struct *workqueue; + struct work_struct ws_awake_rx; + struct work_struct ws_awake_device; + struct work_struct ws_rx_vote_off; + struct work_struct ws_tx_vote_off; + unsigned long flags; + void *hci_uart; /* keeps the hci_uart pointer for reference */ + + /* debug */ + unsigned long ibs_sent_wacks; + unsigned long ibs_sent_slps; + unsigned long ibs_sent_wakes; + unsigned long ibs_recv_wacks; + unsigned long ibs_recv_slps; + unsigned long ibs_recv_wakes; + unsigned long vote_last_jif; + unsigned long vote_on_ticks; + unsigned long vote_off_ticks; + unsigned long tx_votes_on; + unsigned long rx_votes_on; + unsigned long tx_votes_off; + unsigned long rx_votes_off; + unsigned long votes_on; + unsigned long votes_off; +}; + +/* clock_vote needs to be called with the ibs lock held */ +static void serial_clock_vote(unsigned long vote, struct hci_uart *hu) +{ + struct qca_data *qca = hu->priv; + + unsigned long old_vote = (qca->tx_vote | qca->rx_vote); + unsigned long new_vote; + + switch (vote) { + case HCI_IBS_VOTE_STATS_UPDATE: + if (old_vote) + qca->vote_off_ticks += (jiffies - qca->vote_last_jif); + else + qca->vote_on_ticks += (jiffies - qca->vote_last_jif); + return; + + case HCI_IBS_TX_VOTE_CLOCK_ON: + qca->tx_vote = 1; + qca->tx_votes_on++; + new_vote = 1; + break; + + case HCI_IBS_RX_VOTE_CLOCK_ON: + qca->rx_vote = 1; + qca->rx_votes_on++; + new_vote = 1; + break; + + case HCI_IBS_TX_VOTE_CLOCK_OFF: + qca->tx_vote = 0; + qca->tx_votes_off++; + new_vote = qca->rx_vote | qca->tx_vote; + break; + + case HCI_IBS_RX_VOTE_CLOCK_OFF: + qca->rx_vote = 0; + qca->rx_votes_off++; + new_vote = qca->rx_vote | qca->tx_vote; + break; + + default: /* error */ + BT_ERR("voting irregularity"); + return; + } + + if (new_vote != old_vote) { + if (new_vote) + rome_serial_clock_on(hu->tty); + else + rome_serial_clock_off(hu->tty); + + BT_DBG("HCIUART_IBS: vote serial_hs clock %lu(%lu)", + new_vote, vote); + + /* debug */ + if (new_vote) { + qca->votes_on++; + qca->vote_off_ticks += (jiffies - qca->vote_last_jif); + } else { + qca->votes_off++; + qca->vote_on_ticks += (jiffies - qca->vote_last_jif); + } + qca->vote_last_jif = jiffies; + } +} + +/* + * Builds and sends an HCI_IBS command packet. + * These are very simple packets with only 1 cmd byte + */ +static int send_hci_ibs_cmd(u8 cmd, struct hci_uart *hu) +{ + int err = 0; + struct sk_buff *skb = NULL; + struct qca_data *qca = hu->priv; + struct hci_ibs_cmd *hci_ibs_packet; + + BT_DBG("hu %p send hci ibs cmd 0x%x", hu, cmd); + + /* allocate packet */ + skb = bt_skb_alloc(1, GFP_ATOMIC); + if (!skb) { + BT_ERR("cannot allocate memory for HCI_IBS packet"); + return -ENOMEM; + } + + /* prepare packet */ + hci_ibs_packet = (struct hci_ibs_cmd *) skb_put(skb, 1); + hci_ibs_packet->cmd = cmd; + skb->dev = (void *) hu->hdev; + + /* send packet */ + skb_queue_tail(&qca->txq, skb); + + return err; +} + +static void qca_wq_awake_device(struct work_struct *work) +{ + struct qca_data *qca = container_of(work, struct qca_data, + ws_awake_device); + struct hci_uart *hu = (struct hci_uart *)qca->hci_uart; + + BT_DBG(" %p wq awake device", hu); + + /* Vote for serial clock */ + serial_clock_vote(HCI_IBS_TX_VOTE_CLOCK_ON, hu); + + spin_lock(&qca->hci_ibs_lock); + + /* send wake indication to device */ + if (send_hci_ibs_cmd(HCI_IBS_WAKE_IND, hu) < 0) + BT_ERR("cannot send WAKE to device"); + + qca->ibs_sent_wakes++; /* debug */ + + /* start retransmit timer */ + mod_timer(&qca->wake_retrans_timer, jiffies + wake_retrans); + + spin_unlock(&qca->hci_ibs_lock); + + /* actually send the packets */ + hci_uart_tx_wakeup(hu); +} + +static void qca_wq_awake_rx(struct work_struct *work) +{ + struct qca_data *qca = container_of(work, struct qca_data, + ws_awake_rx); + struct hci_uart *hu = (struct hci_uart *)qca->hci_uart; + + BT_DBG(" %p wq awake rx", hu); + + serial_clock_vote(HCI_IBS_RX_VOTE_CLOCK_ON, hu); + + spin_lock(&qca->hci_ibs_lock); + qca->rx_ibs_state = HCI_IBS_RX_AWAKE; + + /* Always acknowledge device wake up, + * sending IBS message doesn't count as TX ON + */ + if (send_hci_ibs_cmd(HCI_IBS_WAKE_ACK, hu) < 0) + BT_ERR("cannot acknowledge device wake up"); + + qca->ibs_sent_wacks++; /* debug */ + + spin_unlock(&qca->hci_ibs_lock); + + /* actually send the packets */ + hci_uart_tx_wakeup(hu); +} + +static void qca_wq_serial_rx_clock_vote_off(struct work_struct *work) +{ + struct qca_data *qca = container_of(work, struct qca_data, + ws_rx_vote_off); + struct hci_uart *hu = (struct hci_uart *)qca->hci_uart; + + BT_DBG("hu %p rx clock vote off", hu); + + serial_clock_vote(HCI_IBS_RX_VOTE_CLOCK_OFF, hu); +} + +static void qca_wq_serial_tx_clock_vote_off(struct work_struct *work) +{ + struct qca_data *qca = container_of(work, struct qca_data, + ws_tx_vote_off); + struct hci_uart *hu = (struct hci_uart *)qca->hci_uart; + + BT_DBG("hu %p tx clock vote off", hu); + + hci_uart_tx_wakeup(hu); /* run HCI tx handling unlocked */ + + /* now that message queued to tty driver, vote for tty clocks off + * It is up to the tty driver to pend the clocks off until tx done. + */ + serial_clock_vote(HCI_IBS_TX_VOTE_CLOCK_OFF, hu); +} + +static void hci_ibs_tx_idle_timeout(unsigned long arg) +{ + struct hci_uart *hu = (struct hci_uart *) arg; + struct qca_data *qca = hu->priv; + unsigned long flags; + + BT_DBG("hu %p idle timeout in %lu state", hu, qca->tx_ibs_state); + + spin_lock_irqsave_nested(&qca->hci_ibs_lock, + flags, SINGLE_DEPTH_NESTING); + + switch (qca->tx_ibs_state) { + case HCI_IBS_TX_AWAKE: /* TX_IDLE, go to SLEEP */ + if (send_hci_ibs_cmd(HCI_IBS_SLEEP_IND, hu) < 0) { + BT_ERR("cannot send SLEEP to device"); + break; + } + qca->tx_ibs_state = HCI_IBS_TX_ASLEEP; + qca->ibs_sent_slps++; /* debug */ + queue_work(qca->workqueue, &qca->ws_tx_vote_off); + break; + + case HCI_IBS_TX_ASLEEP: + case HCI_IBS_TX_WAKING: + default: + BT_ERR("spurrious timeout in tx state %ld", qca->tx_ibs_state); + break; + } + + spin_unlock_irqrestore(&qca->hci_ibs_lock, flags); +} + +static void hci_ibs_wake_retrans_timeout(unsigned long arg) +{ + struct hci_uart *hu = (struct hci_uart *) arg; + struct qca_data *qca = hu->priv; + unsigned long flags; + unsigned long retransmit = 0; + + BT_DBG("hu %p wake retransmit timeout in %lu state", + hu, qca->tx_ibs_state); + + spin_lock_irqsave_nested(&qca->hci_ibs_lock, + flags, SINGLE_DEPTH_NESTING); + + switch (qca->tx_ibs_state) { + case HCI_IBS_TX_WAKING: /* No WAKE_ACK, retransmit WAKE */ + retransmit = 1; + if (send_hci_ibs_cmd(HCI_IBS_WAKE_IND, hu) < 0) { + BT_ERR("cannot acknowledge device wake up"); + break; + } + qca->ibs_sent_wakes++; /* debug */ + mod_timer(&qca->wake_retrans_timer, jiffies + wake_retrans); + break; + + case HCI_IBS_TX_ASLEEP: + case HCI_IBS_TX_AWAKE: + default: + BT_ERR("spurrious timeout tx state %ld", qca->tx_ibs_state); + break; + } + + spin_unlock_irqrestore(&qca->hci_ibs_lock, flags); + + if (retransmit) + hci_uart_tx_wakeup(hu); +} + +/* Initialize protocol */ +static int qca_open(struct hci_uart *hu) +{ + struct qca_data *qca; + + BT_DBG("hu %p qca_open", hu); + + qca = kzalloc(sizeof(struct qca_data), GFP_ATOMIC); + if (!qca) + return -ENOMEM; + + skb_queue_head_init(&qca->txq); + skb_queue_head_init(&qca->tx_wait_q); + spin_lock_init(&qca->hci_ibs_lock); + qca->workqueue = create_singlethread_workqueue("qca_wq"); + if (!qca->workqueue) { + BT_ERR("QCA Workqueue not initialized properly"); + kfree(qca); + return -ENOMEM; + } + + INIT_WORK(&qca->ws_awake_rx, qca_wq_awake_rx); + INIT_WORK(&qca->ws_awake_device, qca_wq_awake_device); + INIT_WORK(&qca->ws_rx_vote_off, qca_wq_serial_rx_clock_vote_off); + INIT_WORK(&qca->ws_tx_vote_off, qca_wq_serial_tx_clock_vote_off); + + qca->hci_uart = (void *)hu; + + /* Assume we start with both sides asleep -- extra wakes OK */ + qca->tx_ibs_state = HCI_IBS_TX_ASLEEP; + qca->rx_ibs_state = HCI_IBS_RX_ASLEEP; + /* clocks actually on, but we start votes off */ + qca->tx_vote = 0; + qca->rx_vote = 0; + qca->flags = 0; + + /* debug */ + qca->ibs_sent_wacks = 0; + qca->ibs_sent_slps = 0; + qca->ibs_sent_wakes = 0; + qca->ibs_recv_wacks = 0; + qca->ibs_recv_slps = 0; + qca->ibs_recv_wakes = 0; + qca->vote_last_jif = jiffies; + qca->vote_on_ticks = 0; + qca->vote_off_ticks = 0; + qca->votes_on = 0; + qca->votes_off = 0; + qca->tx_votes_on = 0; + qca->tx_votes_off = 0; + qca->rx_votes_on = 0; + qca->rx_votes_off = 0; + + hu->priv = qca; + + init_timer(&qca->wake_retrans_timer); + qca->wake_retrans_timer.function = hci_ibs_wake_retrans_timeout; + qca->wake_retrans_timer.data = (u_long) hu; + + init_timer(&qca->tx_idle_timer); + qca->tx_idle_timer.function = hci_ibs_tx_idle_timeout; + qca->tx_idle_timer.data = (u_long) hu; + + BT_INFO("HCI_UART_QCA open, tx_idle_delay=%lu, wake_retrans=%lu", + tx_idle_delay, wake_retrans); + + return 0; +} + +static void ibs_log_local_stats(struct qca_data *qca) +{ + BT_INFO("tx_idle_delay=%lu, wake_retrans=%lu", tx_idle_delay, + wake_retrans); + BT_INFO("tx_ibs_state=%lu, rx_ibs_state=%lu", qca->tx_ibs_state, + qca->rx_ibs_state); + BT_INFO("sent: sleep=%lu, wake=%lu, wake_ack=%lu", qca->ibs_sent_slps, + qca->ibs_sent_wakes, qca->ibs_sent_wacks); + BT_INFO("recv: sleep=%lu, wake=%lu, wake_ack=%lu", qca->ibs_recv_slps, + qca->ibs_recv_wakes, qca->ibs_recv_wacks); + BT_INFO("queues: txq=%s, txwaitq=%s", skb_queue_empty(&qca->txq)? + "empty" : "full", skb_queue_empty(&qca->tx_wait_q)? + "empty" : "full"); + BT_INFO("vote state: tx=%lu, rx=%lu", qca->tx_vote, qca->rx_vote); + BT_INFO("tx votes cast: on=%lu, off=%lu", qca->tx_votes_on, + qca->tx_votes_off); + BT_INFO("rx votes cast: on=%lu, off=%lu", qca->rx_votes_on, + qca->rx_votes_off); + BT_INFO("msm_clock votes cast: on=%lu, off=%lu", qca->votes_on, + qca->votes_off); + BT_INFO("vote ticks: on=%lu, off=%lu", qca->vote_on_ticks, + qca->vote_off_ticks); +} + +/* Flush protocol data */ +static int qca_flush(struct hci_uart *hu) +{ + struct qca_data *qca = hu->priv; + + BT_DBG("hu %p qca flush", hu); + + skb_queue_purge(&qca->tx_wait_q); + skb_queue_purge(&qca->txq); + + return 0; +} + +/* Close protocol */ +static int qca_close(struct hci_uart *hu) +{ + struct qca_data *qca = hu->priv; + + BT_DBG("hu %p qca close", hu); + + serial_clock_vote(HCI_IBS_VOTE_STATS_UPDATE, hu); + ibs_log_local_stats(qca); + + skb_queue_purge(&qca->tx_wait_q); + skb_queue_purge(&qca->txq); + del_timer(&qca->tx_idle_timer); + del_timer(&qca->wake_retrans_timer); + destroy_workqueue(qca->workqueue); + qca->hci_uart = NULL; + + kfree_skb(qca->rx_skb); + + hu->priv = NULL; + + kfree(qca); + + return 0; +} + +/* + * Called upon a wake-up-indication from the device + */ +static void device_want_to_wakeup(struct hci_uart *hu) +{ + unsigned long flags; + struct qca_data *qca = hu->priv; + + BT_DBG("hu %p want to wake up", hu); + + spin_lock_irqsave(&qca->hci_ibs_lock, flags); + + /* debug */ + qca->ibs_recv_wakes++; + + switch (qca->rx_ibs_state) { + case HCI_IBS_RX_ASLEEP: + /* Make sure clock is on - we may have turned clock off since + * receiving the wake up indicator + * awake rx clock + */ + queue_work(qca->workqueue, &qca->ws_awake_rx); + spin_unlock_irqrestore(&qca->hci_ibs_lock, flags); + return; + + case HCI_IBS_RX_AWAKE: + /* Always acknowledge device wake up, + * sending IBS message doesn't count as TX ON. + */ + if (send_hci_ibs_cmd(HCI_IBS_WAKE_ACK, hu) < 0) { + BT_ERR("cannot acknowledge device wake up"); + break; + } + qca->ibs_sent_wacks++; /* debug */ + break; + + default: + /* any other state is illegal */ + BT_ERR("received HCI_IBS_WAKE_IND in rx state %ld", + qca->rx_ibs_state); + break; + } + + spin_unlock_irqrestore(&qca->hci_ibs_lock, flags); + /* actually send the packets */ + hci_uart_tx_wakeup(hu); +} + +/* + * Called upon a sleep-indication from the device + */ +static void device_want_to_sleep(struct hci_uart *hu) +{ + unsigned long flags; + struct qca_data *qca = hu->priv; + + BT_DBG("hu %p want to sleep", hu); + + spin_lock_irqsave(&qca->hci_ibs_lock, flags); + + /* debug */ + qca->ibs_recv_slps++; + + switch (qca->rx_ibs_state) { + case HCI_IBS_RX_AWAKE: + /* update state */ + qca->rx_ibs_state = HCI_IBS_RX_ASLEEP; + /* vote off rx clock under workqueue */ + queue_work(qca->workqueue, &qca->ws_rx_vote_off); + break; + + case HCI_IBS_RX_ASLEEP: + /* deliberate fall-through */ + default: + /* any other state is illegal */ + BT_ERR("received HCI_IBS_SLEEP_IND in rx state %ld", + qca->rx_ibs_state); + break; + } + + spin_unlock_irqrestore(&qca->hci_ibs_lock, flags); +} + +/* + * Called upon wake-up-acknowledgement from the device + */ +static void device_woke_up(struct hci_uart *hu) +{ + unsigned long flags; + struct qca_data *qca = hu->priv; + struct sk_buff *skb = NULL; + + BT_DBG("hu %p woke up", hu); + + spin_lock_irqsave(&qca->hci_ibs_lock, flags); + + /* debug */ + qca->ibs_recv_wacks++; + + switch (qca->tx_ibs_state) { + case HCI_IBS_TX_AWAKE: + /* expect one if we send 2 WAKEs */ + BT_DBG("received HCI_IBS_WAKE_ACK in tx state %ld", + qca->tx_ibs_state); + break; + + case HCI_IBS_TX_WAKING: + /* send pending packets */ + while ((skb = skb_dequeue(&qca->tx_wait_q))) + skb_queue_tail(&qca->txq, skb); + + /* switch timers and change state to HCI_IBS_TX_AWAKE */ + del_timer(&qca->wake_retrans_timer); + mod_timer(&qca->tx_idle_timer, jiffies + tx_idle_delay); + qca->tx_ibs_state = HCI_IBS_TX_AWAKE; + break; + + case HCI_IBS_TX_ASLEEP: + /* This could be spurrious rx wake on the BT chip. + * Send it another SLEEP othwise it will stay awake. */ + default: + BT_ERR("received HCI_IBS_WAKE_ACK in tx state %ld", + qca->tx_ibs_state); + break; + } + + spin_unlock_irqrestore(&qca->hci_ibs_lock, flags); + + /* actually send the packets */ + hci_uart_tx_wakeup(hu); +} + +/* Enqueue frame for transmittion (padding, crc, etc) */ +/* may be called from two simultaneous tasklets */ +static int qca_enqueue(struct hci_uart *hu, struct sk_buff *skb) +{ + unsigned long flags = 0; + struct qca_data *qca = hu->priv; + + BT_DBG("hu %p qca enq skb %p tx_ibs_state %ld", hu, skb, + qca->tx_ibs_state); + + /* Prepend skb with frame type */ + memcpy(skb_push(skb, 1), &bt_cb(skb)->pkt_type, 1); + + /* don't go to sleep in middle of patch download or + * Out-Of-Band(GPIOs control) sleep is selected + */ + if (!test_bit(STATE_IN_BAND_SLEEP_ENABLED, &qca->flags)) { + skb_queue_tail(&qca->txq, skb); + return 0; + } + + spin_lock_irqsave(&qca->hci_ibs_lock, flags); + + /* act according to current state */ + switch (qca->tx_ibs_state) { + case HCI_IBS_TX_AWAKE: + BT_DBG("device awake, sending normally"); + skb_queue_tail(&qca->txq, skb); + mod_timer(&qca->tx_idle_timer, jiffies + tx_idle_delay); + break; + + case HCI_IBS_TX_ASLEEP: + BT_DBG("device asleep, waking up and queueing packet"); + /* save packet for later */ + skb_queue_tail(&qca->tx_wait_q, skb); + + qca->tx_ibs_state = HCI_IBS_TX_WAKING; + /* schedule a work queue to wake up device */ + queue_work(qca->workqueue, &qca->ws_awake_device); + break; + + case HCI_IBS_TX_WAKING: + BT_DBG("device waking up, queueing packet"); + /* transient state; just keep packet for later */ + skb_queue_tail(&qca->tx_wait_q, skb); + break; + + default: + BT_ERR("illegal tx state: %ld (losing packet)", + qca->tx_ibs_state); + kfree_skb(skb); + break; + } + + spin_unlock_irqrestore(&qca->hci_ibs_lock, flags); + + return 0; +} + +#define QCA_IBS_SLEEP_IND_EVENT \ + .type = HCI_IBS_SLEEP_IND, \ + .hlen = 0, \ + .loff = 0, \ + .lsize = 0, \ + .maxlen = HCI_MAX_IBS_SIZE + +#define QCA_IBS_WAKE_IND_EVENT \ + .type = HCI_IBS_WAKE_IND, \ + .hlen = 0, \ + .loff = 0, \ + .lsize = 0, \ + .maxlen = HCI_MAX_IBS_SIZE + +#define QCA_IBS_WAKE_ACK_EVENT \ + .type = HCI_IBS_WAKE_ACK, \ + .hlen = 0, \ + .loff = 0, \ + .lsize = 0, \ + .maxlen = HCI_MAX_IBS_SIZE + +static int qca_event_recv_frame(struct hci_dev *hdev, struct sk_buff *skb) +{ + int ret; + + rome_debug_dump(skb->data, skb->len, false); + ret = rome_vendor_frame(hdev, skb); + if (!ret) + ret = hci_recv_frame(hdev, skb); + + return ret; +} + +static int qca_ibs_recv_frame(struct hci_dev *hdev, struct sk_buff *skb) +{ + struct hci_uart *hu = hci_get_drvdata(hdev); + u8 pkt_type; + + pkt_type = bt_cb(skb)->pkt_type; + rome_debug_dump(&pkt_type, 1, false); + + switch (pkt_type) { + case HCI_IBS_SLEEP_IND: + BT_DBG("HCI_IBS_SLEEP_IND packet"); + device_want_to_sleep(hu); + break; + + case HCI_IBS_WAKE_IND: + BT_DBG("HCI_IBS_WAKE_IND packet"); + device_want_to_wakeup(hu); + break; + + case HCI_IBS_WAKE_ACK: + BT_DBG("HCI_IBS_WAKE_ACK packet"); + device_woke_up(hu); + break; + + default: + BT_ERR("Unknown HCI packet type %2.2x", (__u8)*skb->data); + hdev->stat.err_rx++; + break; + } + + kfree_skb(skb); + return 0; +} + +static const struct h4_recv_pkt qca_recv_pkts[] = { + { H4_RECV_ACL, .recv = hci_recv_frame }, + { H4_RECV_SCO, .recv = hci_recv_frame }, + { H4_RECV_EVENT, .recv = qca_event_recv_frame }, + { QCA_IBS_WAKE_IND_EVENT, .recv = qca_ibs_recv_frame }, + { QCA_IBS_WAKE_ACK_EVENT, .recv = qca_ibs_recv_frame }, + { QCA_IBS_SLEEP_IND_EVENT, .recv = qca_ibs_recv_frame }, +}; + +static int qca_recv(struct hci_uart *hu, const void *data, int count) +{ + struct qca_data *qca = hu->priv; + + if (!test_bit(HCI_UART_REGISTERED, &hu->flags)) + return -EUNATCH; + + qca->rx_skb = h4_recv_buf(hu->hdev, qca->rx_skb, data, count, + qca_recv_pkts, ARRAY_SIZE(qca_recv_pkts)); + if (IS_ERR(qca->rx_skb)) { + int err = PTR_ERR(qca->rx_skb); + BT_ERR("%s: Frame reassembly failed (%d)", hu->hdev->name, err); + qca->rx_skb = NULL; + return err; + } + + return count; +} + +static struct sk_buff *qca_dequeue(struct hci_uart *hu) +{ + struct qca_data *qca = hu->priv; + struct sk_buff *skb; + + skb = skb_dequeue(&qca->txq); + if (skb) { + rome_debug_dump(skb->data, skb->len, true); + } + + return skb; +} + +static int qca_set_baudrate(struct hci_dev *hdev, unsigned int speed) +{ + struct sk_buff *skb; + uint8_t baudrate; + + if (speed > 3000000) + return -EINVAL; + + BT_INFO("%s: Set controller UART speed to %d", hdev->name, speed); + + baudrate = rome_get_baudrate(speed); + skb = __hci_cmd_sync(hdev, EDL_PATCH_BAUDRATE, 1, &baudrate, + HCI_CMD_TIMEOUT); + if (IS_ERR(skb)) { + /* ROME won't return command_complete_evt after receiving + * baudrate command changed because it triggers HCI_RESET + * immediately and tries to communicate with new baudrate. + */ + if (PTR_ERR(skb) == -ETIMEDOUT) + return 0; + + return PTR_ERR(skb); + } + + kfree_skb(skb); + return 0; +} + +static int qca_setup(struct hci_uart *hu) +{ + struct hci_dev *hdev = hu->hdev; + struct qca_data *qca = hu->priv; + unsigned int speed; + int ret; + + BT_INFO("%s: ROME setup", hdev->name); + + /* Patch downloading has to be done without IBS mode */ + clear_bit(STATE_IN_BAND_SLEEP_ENABLED, &qca->flags); + + /* setup initial baudrate */ + speed = 0; + if (hu->init_speed) + speed = hu->init_speed; + else if (hu->proto->init_speed) + speed = hu->proto->init_speed; + + if (speed) + hci_uart_set_baudrate(hu, speed); + + /* setup user speed if needed */ + speed = 0; + if (hu->oper_speed) + speed = hu->oper_speed; + else if (hu->proto->oper_speed) + speed = hu->proto->oper_speed; + + if (speed) { + ret = qca_set_baudrate(hdev, speed); + if (ret) { + BT_ERR("%s: can't change the baud rate (%d)", + hdev->name, ret); + return ret; + } + hci_uart_set_baudrate(hu, speed); + } + + /* setup patch / nvm configurations */ + ret = rome_uart_setup(hdev, speed); +#ifdef QCA_FEATURE_UART_IN_BAND_SLEEP + if (!ret) + set_bit(STATE_IN_BAND_SLEEP_ENABLED, &qca->flags); +#endif + + /* setup bdaddr */ + hu->hdev->set_bdaddr = rome_set_bdaddr; + + return ret; +} + +static struct hci_uart_proto qca_p = { + .id = HCI_UART_QCA, + .name = "QCA", + .open = qca_open, + .init_speed = 115200, + .oper_speed = 3000000, + .close = qca_close, + .recv = qca_recv, + .enqueue = qca_enqueue, + .dequeue = qca_dequeue, + .flush = qca_flush, + .setup = qca_setup, +}; + +int __init qca_init(void) +{ + return hci_uart_register_proto(&qca_p); +} + +int __exit qca_deinit(void) +{ + return hci_uart_unregister_proto(&qca_p); +} + +module_param(wake_retrans, ulong, 0644); +MODULE_PARM_DESC(wake_retrans, "Delay (1/HZ) to retransmit WAKE_IND"); + +module_param(tx_idle_delay, ulong, 0644); +MODULE_PARM_DESC(tx_idle_delay, "Delay (1/HZ) since last tx for SLEEP_IND"); diff --git a/drivers/bluetooth/hci_uart.h b/drivers/bluetooth/hci_uart.h index 496587a..495b9ef 100644 --- a/drivers/bluetooth/hci_uart.h +++ b/drivers/bluetooth/hci_uart.h @@ -35,7 +35,7 @@ #define HCIUARTGETFLAGS _IOR('U', 204, int) /* UART protocols */ -#define HCI_UART_MAX_PROTO 8 +#define HCI_UART_MAX_PROTO 9 #define HCI_UART_H4 0 #define HCI_UART_BCSP 1 @@ -45,6 +45,7 @@ #define HCI_UART_ATH3K 5 #define HCI_UART_INTEL 6 #define HCI_UART_BCM 7 +#define HCI_UART_QCA 8 #define HCI_UART_RAW_DEVICE 0 #define HCI_UART_RESET_ON_INIT 1 @@ -176,3 +177,8 @@ int intel_deinit(void); int bcm_init(void); int bcm_deinit(void); #endif + +#ifdef CONFIG_BT_HCIUART_QCA +int qca_init(void); +int qca_deinit(void); +#endif -- 2.0.5 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html