Release 4.12 drivers/bluetooth/hci_ldisc.c
  
  
  
/*
 *
 *  Bluetooth HCI UART driver
 *
 *  Copyright (C) 2000-2001  Qualcomm Incorporated
 *  Copyright (C) 2002-2003  Maxim Krasnyansky <maxk@qualcomm.com>
 *  Copyright (C) 2004-2005  Marcel Holtmann <marcel@holtmann.org>
 *
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  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/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/skbuff.h>
#include <linux/firmware.h>
#include <net/bluetooth/bluetooth.h>
#include <net/bluetooth/hci_core.h>
#include "btintel.h"
#include "btbcm.h"
#include "hci_uart.h"
#define VERSION "2.3"
static const struct hci_uart_proto *hup[HCI_UART_MAX_PROTO];
int hci_uart_register_proto(const struct hci_uart_proto *p)
{
	if (p->id >= HCI_UART_MAX_PROTO)
		return -EINVAL;
	if (hup[p->id])
		return -EEXIST;
	hup[p->id] = p;
	BT_INFO("HCI UART protocol %s registered", p->name);
	return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Maksim Krasnyanskiy | 47 | 82.46% | 1 | 33.33% | 
| Marcel Holtmann | 10 | 17.54% | 2 | 66.67% | 
| Total | 57 | 100.00% | 3 | 100.00% | 
int hci_uart_unregister_proto(const struct hci_uart_proto *p)
{
	if (p->id >= HCI_UART_MAX_PROTO)
		return -EINVAL;
	if (!hup[p->id])
		return -EINVAL;
	hup[p->id] = NULL;
	return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Maksim Krasnyanskiy | 48 | 97.96% | 1 | 50.00% | 
| Marcel Holtmann | 1 | 2.04% | 1 | 50.00% | 
| Total | 49 | 100.00% | 2 | 100.00% | 
static const struct hci_uart_proto *hci_uart_get_proto(unsigned int id)
{
	if (id >= HCI_UART_MAX_PROTO)
		return NULL;
	return hup[id];
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Maksim Krasnyanskiy | 27 | 96.43% | 2 | 66.67% | 
| Marcel Holtmann | 1 | 3.57% | 1 | 33.33% | 
| Total | 28 | 100.00% | 3 | 100.00% | 
static inline void hci_uart_tx_complete(struct hci_uart *hu, int pkt_type)
{
	struct hci_dev *hdev = hu->hdev;
	/* Update HCI stat counters */
	switch (pkt_type) {
	case HCI_COMMAND_PKT:
		hdev->stat.cmd_tx++;
		break;
	case HCI_ACLDATA_PKT:
		hdev->stat.acl_tx++;
		break;
	case HCI_SCODATA_PKT:
		hdev->stat.sco_tx++;
		break;
	}
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Maksim Krasnyanskiy | 49 | 76.56% | 2 | 50.00% | 
| Linus Torvalds | 14 | 21.88% | 1 | 25.00% | 
| Karl Beldan | 1 | 1.56% | 1 | 25.00% | 
| Total | 64 | 100.00% | 4 | 100.00% | 
static inline struct sk_buff *hci_uart_dequeue(struct hci_uart *hu)
{
	struct sk_buff *skb = hu->tx_skb;
	if (!skb) {
		if (test_bit(HCI_UART_PROTO_READY, &hu->flags))
			skb = hu->proto->dequeue(hu);
	} else {
		hu->tx_skb = NULL;
	}
	return skb;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Maksim Krasnyanskiy | 39 | 60.00% | 2 | 50.00% | 
| Dean Jenkins | 16 | 24.62% | 1 | 25.00% | 
| Linus Torvalds | 10 | 15.38% | 1 | 25.00% | 
| Total | 65 | 100.00% | 4 | 100.00% | 
int hci_uart_tx_wakeup(struct hci_uart *hu)
{
	if (!test_bit(HCI_UART_PROTO_READY, &hu->flags))
		return 0;
	if (test_and_set_bit(HCI_UART_SENDING, &hu->tx_state)) {
		set_bit(HCI_UART_TX_WAKEUP, &hu->tx_state);
		return 0;
	}
	BT_DBG("");
	schedule_work(&hu->write_work);
	return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Maksim Krasnyanskiy | 36 | 52.17% | 1 | 25.00% | 
| Dean Jenkins | 16 | 23.19% | 1 | 25.00% | 
| Felipe Balbi | 12 | 17.39% | 1 | 25.00% | 
| Linus Torvalds | 5 | 7.25% | 1 | 25.00% | 
| Total | 69 | 100.00% | 4 | 100.00% | 
EXPORT_SYMBOL_GPL(hci_uart_tx_wakeup);
static void hci_uart_write_work(struct work_struct *work)
{
	struct hci_uart *hu = container_of(work, struct hci_uart, write_work);
	struct tty_struct *tty = hu->tty;
	struct hci_dev *hdev = hu->hdev;
	struct sk_buff *skb;
	/* REVISIT: should we cope with bad skbs or ->write() returning
         * and error value ?
         */
restart:
	clear_bit(HCI_UART_TX_WAKEUP, &hu->tx_state);
	while ((skb = hci_uart_dequeue(hu))) {
		int len;
		set_bit(TTY_DO_WRITE_WAKEUP, &tty->flags);
		len = tty->ops->write(tty, skb->data, skb->len);
		hdev->stat.byte_tx += len;
		skb_pull(skb, len);
		if (skb->len) {
			hu->tx_skb = skb;
			break;
		}
		hci_uart_tx_complete(hu, hci_skb_pkt_type(skb));
		kfree_skb(skb);
	}
	if (test_bit(HCI_UART_TX_WAKEUP, &hu->tx_state))
		goto restart;
	clear_bit(HCI_UART_SENDING, &hu->tx_state);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Maksim Krasnyanskiy | 103 | 58.19% | 2 | 25.00% | 
| Felipe Balbi | 49 | 27.68% | 1 | 12.50% | 
| Linus Torvalds | 20 | 11.30% | 1 | 12.50% | 
| Marcel Holtmann | 3 | 1.69% | 2 | 25.00% | 
| Al Viro | 1 | 0.56% | 1 | 12.50% | 
| Alan Cox | 1 | 0.56% | 1 | 12.50% | 
| Total | 177 | 100.00% | 8 | 100.00% | 
static void hci_uart_init_work(struct work_struct *work)
{
	struct hci_uart *hu = container_of(work, struct hci_uart, init_ready);
	int err;
	struct hci_dev *hdev;
	if (!test_and_clear_bit(HCI_UART_INIT_PENDING, &hu->hdev_flags))
		return;
	err = hci_register_dev(hu->hdev);
	if (err < 0) {
		BT_ERR("Can't register HCI device");
		hdev = hu->hdev;
		hu->hdev = NULL;
		hci_free_dev(hdev);
		clear_bit(HCI_UART_PROTO_READY, &hu->flags);
		hu->proto->close(hu);
		return;
	}
	set_bit(HCI_UART_REGISTERED, &hu->flags);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Johan Hedberg | 94 | 80.34% | 1 | 25.00% | 
| Dean Jenkins | 23 | 19.66% | 3 | 75.00% | 
| Total | 117 | 100.00% | 4 | 100.00% | 
int hci_uart_init_ready(struct hci_uart *hu)
{
	if (!test_bit(HCI_UART_INIT_PENDING, &hu->hdev_flags))
		return -EALREADY;
	schedule_work(&hu->init_ready);
	return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Johan Hedberg | 38 | 100.00% | 1 | 100.00% | 
| Total | 38 | 100.00% | 1 | 100.00% | 
/* ------- Interface to HCI layer ------ */
/* Initialize device */
static int hci_uart_open(struct hci_dev *hdev)
{
	BT_DBG("%s %p", hdev->name, hdev);
	/* Nothing to do for UART driver */
	return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Linus Torvalds | 17 | 65.38% | 1 | 33.33% | 
| Maksim Krasnyanskiy | 9 | 34.62% | 2 | 66.67% | 
| Total | 26 | 100.00% | 3 | 100.00% | 
/* Reset device */
static int hci_uart_flush(struct hci_dev *hdev)
{
	struct hci_uart *hu  = hci_get_drvdata(hdev);
	struct tty_struct *tty = hu->tty;
	BT_DBG("hdev %p tty %p", hdev, tty);
	if (hu->tx_skb) {
		kfree_skb(hu->tx_skb); hu->tx_skb = NULL;
	}
	/* Flush any pending characters in the driver and discipline. */
	tty_ldisc_flush(tty);
	tty_driver_flush_buffer(tty);
	if (test_bit(HCI_UART_PROTO_READY, &hu->flags))
		hu->proto->flush(hu);
	return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Maksim Krasnyanskiy | 57 | 60.00% | 2 | 28.57% | 
| Linus Torvalds | 32 | 33.68% | 1 | 14.29% | 
| David Herrmann | 3 | 3.16% | 1 | 14.29% | 
| Alan Cox | 2 | 2.11% | 2 | 28.57% | 
| Loic Poulain | 1 | 1.05% | 1 | 14.29% | 
| Total | 95 | 100.00% | 7 | 100.00% | 
/* Close device */
static int hci_uart_close(struct hci_dev *hdev)
{
	BT_DBG("hdev %p", hdev);
	hci_uart_flush(hdev);
	hdev->flush = NULL;
	return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Maksim Krasnyanskiy | 15 | 46.88% | 1 | 33.33% | 
| Linus Torvalds | 11 | 34.38% | 1 | 33.33% | 
| David Newall | 6 | 18.75% | 1 | 33.33% | 
| Total | 32 | 100.00% | 3 | 100.00% | 
/* Send frames from HCI layer */
static int hci_uart_send_frame(struct hci_dev *hdev, struct sk_buff *skb)
{
	struct hci_uart *hu = hci_get_drvdata(hdev);
	BT_DBG("%s: type %d len %d", hdev->name, hci_skb_pkt_type(skb),
	       skb->len);
	if (!test_bit(HCI_UART_PROTO_READY, &hu->flags))
		return -EUNATCH;
	hu->proto->enqueue(hu, skb);
	hci_uart_tx_wakeup(hu);
	return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Linus Torvalds | 40 | 50.00% | 1 | 12.50% | 
| Dean Jenkins | 17 | 21.25% | 1 | 12.50% | 
| Marcel Holtmann | 12 | 15.00% | 4 | 50.00% | 
| Maksim Krasnyanskiy | 11 | 13.75% | 2 | 25.00% | 
| Total | 80 | 100.00% | 8 | 100.00% | 
/* Flow control or un-flow control the device */
void hci_uart_set_flow_control(struct hci_uart *hu, bool enable)
{
	struct tty_struct *tty = hu->tty;
	struct ktermios ktermios;
	int status;
	unsigned int set = 0;
	unsigned int clear = 0;
	if (enable) {
		/* Disable hardware flow control */
		ktermios = tty->termios;
		ktermios.c_cflag &= ~CRTSCTS;
		status = tty_set_termios(tty, &ktermios);
		BT_DBG("Disabling hardware flow control: %s",
		       status ? "failed" : "success");
		/* Clear RTS to prevent the device from sending */
		/* Most UARTs need OUT2 to enable interrupts */
		status = tty->driver->ops->tiocmget(tty);
		BT_DBG("Current tiocm 0x%x", status);
		set &= ~(TIOCM_OUT2 | TIOCM_RTS);
		clear = ~set;
		set &= TIOCM_DTR | TIOCM_RTS | TIOCM_OUT1 |
		       TIOCM_OUT2 | TIOCM_LOOP;
		clear &= TIOCM_DTR | TIOCM_RTS | TIOCM_OUT1 |
			 TIOCM_OUT2 | TIOCM_LOOP;
		status = tty->driver->ops->tiocmset(tty, set, clear);
		BT_DBG("Clearing RTS: %s", status ? "failed" : "success");
	} else {
		/* Set RTS to allow the device to send again */
		status = tty->driver->ops->tiocmget(tty);
		BT_DBG("Current tiocm 0x%x", status);
		set |= (TIOCM_OUT2 | TIOCM_RTS);
		clear = ~set;
		set &= TIOCM_DTR | TIOCM_RTS | TIOCM_OUT1 |
		       TIOCM_OUT2 | TIOCM_LOOP;
		clear &= TIOCM_DTR | TIOCM_RTS | TIOCM_OUT1 |
			 TIOCM_OUT2 | TIOCM_LOOP;
		status = tty->driver->ops->tiocmset(tty, set, clear);
		BT_DBG("Setting RTS: %s", status ? "failed" : "success");
		/* Re-enable hardware flow control */
		ktermios = tty->termios;
		ktermios.c_cflag |= CRTSCTS;
		status = tty_set_termios(tty, &ktermios);
		BT_DBG("Enabling hardware flow control: %s",
		       status ? "failed" : "success");
	}
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Ilya Faenson | 284 | 96.93% | 1 | 50.00% | 
| Frederic Danis | 9 | 3.07% | 1 | 50.00% | 
| Total | 293 | 100.00% | 2 | 100.00% | 
void hci_uart_set_speeds(struct hci_uart *hu, unsigned int init_speed,
			 unsigned int oper_speed)
{
	hu->init_speed = init_speed;
	hu->oper_speed = oper_speed;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Ilya Faenson | 30 | 100.00% | 1 | 100.00% | 
| Total | 30 | 100.00% | 1 | 100.00% | 
void hci_uart_set_baudrate(struct hci_uart *hu, unsigned int speed)
{
	struct tty_struct *tty = hu->tty;
	struct ktermios ktermios;
	ktermios = tty->termios;
	ktermios.c_cflag &= ~CBAUD;
	tty_termios_encode_baud_rate(&ktermios, speed, speed);
	/* tty_set_termios() return not checked as it is always 0 */
	tty_set_termios(tty, &ktermios);
	BT_DBG("%s: New tty speeds: %d/%d", hu->hdev->name,
	       tty->termios.c_ispeed, tty->termios.c_ospeed);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Ilya Faenson | 45 | 54.88% | 1 | 50.00% | 
| Frederic Danis | 37 | 45.12% | 1 | 50.00% | 
| Total | 82 | 100.00% | 2 | 100.00% | 
static int hci_uart_setup(struct hci_dev *hdev)
{
	struct hci_uart *hu = hci_get_drvdata(hdev);
	struct hci_rp_read_local_version *ver;
	struct sk_buff *skb;
	unsigned int speed;
	int err;
	/* Init speed if any */
	if (hu->init_speed)
		speed = hu->init_speed;
	else if (hu->proto->init_speed)
		speed = hu->proto->init_speed;
	else
		speed = 0;
	if (speed)
		hci_uart_set_baudrate(hu, speed);
	/* Operational speed if any */
	if (hu->oper_speed)
		speed = hu->oper_speed;
	else if (hu->proto->oper_speed)
		speed = hu->proto->oper_speed;
	else
		speed = 0;
	if (hu->proto->set_baudrate && speed) {
		err = hu->proto->set_baudrate(hu, speed);
		if (!err)
			hci_uart_set_baudrate(hu, speed);
	}
	if (hu->proto->setup)
		return hu->proto->setup(hu);
	if (!test_bit(HCI_UART_VND_DETECT, &hu->hdev_flags))
		return 0;
	skb = __hci_cmd_sync(hdev, HCI_OP_READ_LOCAL_VERSION, 0, NULL,
			     HCI_INIT_TIMEOUT);
	if (IS_ERR(skb)) {
		BT_ERR("%s: Reading local version information failed (%ld)",
		       hdev->name, PTR_ERR(skb));
		return 0;
	}
	if (skb->len != sizeof(*ver)) {
		BT_ERR("%s: Event length mismatch for version information",
		       hdev->name);
		goto done;
	}
	ver = (struct hci_rp_read_local_version *)skb->data;
	switch (le16_to_cpu(ver->manufacturer)) {
#ifdef CONFIG_BT_HCIUART_INTEL
	case 2:
		hdev->set_bdaddr = btintel_set_bdaddr;
		btintel_check_bdaddr(hdev);
		break;
#endif
#ifdef CONFIG_BT_HCIUART_BCM
	case 15:
		hdev->set_bdaddr = btbcm_set_bdaddr;
		btbcm_check_bdaddr(hdev);
		break;
#endif
	}
done:
	kfree_skb(skb);
	return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Marcel Holtmann | 162 | 49.24% | 5 | 55.56% | 
| Ilya Faenson | 70 | 21.28% | 1 | 11.11% | 
| Frederic Danis | 55 | 16.72% | 2 | 22.22% | 
| Loic Poulain | 42 | 12.77% | 1 | 11.11% | 
| Total | 329 | 100.00% | 9 | 100.00% | 
/* ------ LDISC part ------ */
/* hci_uart_tty_open
 *
 *     Called when line discipline changed to HCI_UART.
 *
 * Arguments:
 *     tty    pointer to tty info structure
 * Return Value:
 *     0 if success, otherwise error code
 */
static int hci_uart_tty_open(struct tty_struct *tty)
{
	struct hci_uart *hu;
	BT_DBG("tty %p", tty);
	/* Error if the tty has no write op instead of leaving an exploitable
           hole */
	if (tty->ops->write == NULL)
		return -EOPNOTSUPP;
	hu = kzalloc(sizeof(struct hci_uart), GFP_KERNEL);
	if (!hu) {
		BT_ERR("Can't allocate control structure");
		return -ENFILE;
	}
	tty->disc_data = hu;
	hu->tty = tty;
	tty->receive_room = 65536;
	/* disable alignment support by default */
	hu->alignment = 1;
	hu->padding = 0;
	INIT_WORK(&hu->init_ready, hci_uart_init_work);
	INIT_WORK(&hu->write_work, hci_uart_write_work);
	/* Flush any pending characters in the driver */
	tty_driver_flush_buffer(tty);
	return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Linus Torvalds | 55 | 43.31% | 1 | 7.69% | 
| Alan Cox | 22 | 17.32% | 3 | 23.08% | 
| Sebastian Reichel | 13 | 10.24% | 1 | 7.69% | 
| Felipe Balbi | 10 | 7.87% | 1 | 7.69% | 
| Johan Hedberg | 10 | 7.87% | 1 | 7.69% | 
| Maksim Krasnyanskiy | 9 | 7.09% | 2 | 15.38% | 
| Valentin Ilie | 5 | 3.94% | 1 | 7.69% | 
| Marcel Holtmann | 1 | 0.79% | 1 | 7.69% | 
| Deepak Saxena | 1 | 0.79% | 1 | 7.69% | 
| Peter Hurley | 1 | 0.79% | 1 | 7.69% | 
| Total | 127 | 100.00% | 13 | 100.00% | 
/* hci_uart_tty_close()
 *
 *    Called when the line discipline is changed to something
 *    else, the tty is closed, or the tty detects a hangup.
 */
static void hci_uart_tty_close(struct tty_struct *tty)
{
	struct hci_uart *hu = tty->disc_data;
	struct hci_dev *hdev;
	BT_DBG("tty %p", tty);
	/* Detach from the tty */
	tty->disc_data = NULL;
	if (!hu)
		return;
	hdev = hu->hdev;
	if (hdev)
		hci_uart_close(hdev);
	cancel_work_sync(&hu->write_work);
	if (test_and_clear_bit(HCI_UART_PROTO_READY, &hu->flags)) {
		if (hdev) {
			if (test_bit(HCI_UART_REGISTERED, &hu->flags))
				hci_unregister_dev(hdev);
			hci_free_dev(hdev);
		}
		hu->proto->close(hu);
	}
	clear_bit(HCI_UART_PROTO_SET, &hu->flags);
	kfree(hu);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Linus Torvalds | 34 | 25.37% | 1 | 8.33% | 
| Maksim Krasnyanskiy | 32 | 23.88% | 2 | 16.67% | 
| Johan Hedberg | 21 | 15.67% | 2 | 16.67% | 
| Loic Poulain | 11 | 8.21% | 1 | 8.33% | 
| Johan Hovold | 9 | 6.72% | 1 | 8.33% | 
| Marcel Holtmann | 9 | 6.72% | 2 | 16.67% | 
| Felipe Balbi | 8 | 5.97% | 1 | 8.33% | 
| Jun Nie | 5 | 3.73% | 1 | 8.33% | 
| David Herrmann | 5 | 3.73% | 1 | 8.33% | 
| Total | 134 | 100.00% | 12 | 100.00% | 
/* hci_uart_tty_wakeup()
 *
 *    Callback for transmit wakeup. Called when low level
 *    device driver can accept more send data.
 *
 * Arguments:        tty    pointer to associated tty instance data
 * Return Value:    None
 */
static void hci_uart_tty_wakeup(struct tty_struct *tty)
{
	struct hci_uart *hu = tty->disc_data;
	BT_DBG("");
	if (!hu)
		return;
	clear_bit(TTY_DO_WRITE_WAKEUP, &tty->flags);
	if (tty != hu->tty)
		return;
	if (test_bit(HCI_UART_PROTO_READY, &hu->flags))
		hci_uart_tx_wakeup(hu);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Linus Torvalds | 39 | 58.21% | 1 | 20.00% | 
| Maksim Krasnyanskiy | 27 | 40.30% | 3 | 60.00% | 
| Loic Poulain | 1 | 1.49% | 1 | 20.00% | 
| Total | 67 | 100.00% | 5 | 100.00% | 
/* hci_uart_tty_receive()
 *
 *     Called by tty low level driver when receive data is
 *     available.
 *
 * Arguments:  tty          pointer to tty isntance data
 *             data         pointer to received data
 *             flags        pointer to flags for data
 *             count        count of received data in bytes
 *
 * Return Value:    None
 */
static void hci_uart_tty_receive(struct tty_struct *tty, const u8 *data,
				 char *flags, int count)
{
	struct hci_uart *hu = tty->disc_data;
	if (!hu || tty != hu->tty)
		return;
	if (!test_bit(HCI_UART_PROTO_READY, &hu->flags))
		return;
	/* It does not need a lock here as it is already protected by a mutex in
         * tty caller
         */
	hu->proto->recv(hu, data, count);
	if (hu->hdev)
		hu->hdev->stat.byte_rx += count;
	tty_unthrottle(tty);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Linus Torvalds | 44 | 47.31% | 2 | 20.00% | 
| Maksim Krasnyanskiy | 38 | 40.86% | 2 | 20.00% | 
| Chan-yeol Park | 6 | 6.45% | 1 | 10.00% | 
| Marcel Holtmann | 2 | 2.15% | 2 | 20.00% | 
| Frederic Danis | 1 | 1.08% | 1 | 10.00% | 
| Loic Poulain | 1 | 1.08% | 1 | 10.00% | 
| Alan Cox | 1 | 1.08% | 1 | 10.00% | 
| Total | 93 | 100.00% | 10 | 100.00% | 
static int hci_uart_register_dev(struct hci_uart *hu)
{
	struct hci_dev *hdev;
	BT_DBG("");
	/* Initialize and register HCI device */
	hdev = hci_alloc_dev();
	if (!hdev) {
		BT_ERR("Can't allocate HCI device");
		return -ENOMEM;
	}
	hu->hdev = hdev;
	hdev->bus = HCI_UART;
	hci_set_drvdata(hdev, hu);
	/* Only when vendor specific setup callback is provided, consider
         * the manufacturer information valid. This avoids filling in the
         * value for Ericsson when nothing is specified.
         */
	if (hu->proto->setup)
		hdev->manufacturer = hu->proto->manufacturer;
	hdev->open  = hci_uart_open;
	hdev->close = hci_uart_close;
	hdev->flush = hci_uart_flush;
	hdev->send  = hci_uart_send_frame;
	hdev->setup = hci_uart_setup;
	SET_HCIDEV_DEV(hdev, hu->tty->dev);
	if (test_bit(HCI_UART_RAW_DEVICE, &hu->hdev_flags))
		set_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks);
	if (test_bit(HCI_UART_EXT_CONFIG, &hu->hdev_flags))
		set_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks);
	if (!test_bit(HCI_UART_RESET_ON_INIT, &hu->hdev_flags))
		set_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks);
	if (test_bit(HCI_UART_CREATE_AMP, &hu->hdev_flags))
		hdev->dev_type = HCI_AMP;
	else
		hdev->dev_type = HCI_PRIMARY;
	if (test_bit(HCI_UART_INIT_PENDING, &hu->hdev_flags))
		return 0;
	if (hci_register_dev(hdev) < 0) {
		BT_ERR("Can't register HCI device");
		hu->hdev = NULL;
		hci_free_dev(hdev);
		return -ENODEV;
	}
	set_bit(HCI_UART_REGISTERED, &hu->flags);
	return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Marcel Holtmann | 117 | 42.86% | 8 | 42.11% | 
| Maksim Krasnyanskiy | 64 | 23.44% | 2 | 10.53% | 
| Johan Hedberg | 45 | 16.48% | 2 | 10.53% | 
| Linus Torvalds | 20 | 7.33% | 1 | 5.26% | 
| David Herrmann | 8 | 2.93% | 2 | 10.53% | 
| Loic Poulain | 6 | 2.20% | 1 | 5.26% | 
| Dean Jenkins | 6 | 2.20% | 1 | 5.26% | 
| Andrei Warkentin | 6 | 2.20% | 1 | 5.26% | 
| Szymon Janc | 1 | 0.37% | 1 | 5.26% | 
| Total | 273 | 100.00% | 19 | 100.00% | 
static int hci_uart_set_proto(struct hci_uart *hu, int id)
{
	const struct hci_uart_proto *p;
	int err;
	p = hci_uart_get_proto(id);
	if (!p)
		return -EPROTONOSUPPORT;
	err = p->open(hu);
	if (err)
		return err;
	hu->proto = p;
	set_bit(HCI_UART_PROTO_READY, &hu->flags);
	err = hci_uart_register_dev(hu);
	if (err) {
		clear_bit(HCI_UART_PROTO_READY, &hu->flags);
		p->close(hu);
		return err;
	}
	return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Maksim Krasnyanskiy | 55 | 51.40% | 2 | 40.00% | 
| Linus Torvalds | 31 | 28.97% | 1 | 20.00% | 
| Loic Poulain | 20 | 18.69% | 1 | 20.00% | 
| Marcel Holtmann | 1 | 0.93% | 1 | 20.00% | 
| Total | 107 | 100.00% | 5 | 100.00% | 
static int hci_uart_set_flags(struct hci_uart *hu, unsigned long flags)
{
	unsigned long valid_flags = BIT(HCI_UART_RAW_DEVICE) |
				    BIT(HCI_UART_RESET_ON_INIT) |
				    BIT(HCI_UART_CREATE_AMP) |
				    BIT(HCI_UART_INIT_PENDING) |
				    BIT(HCI_UART_EXT_CONFIG) |
				    BIT(HCI_UART_VND_DETECT);
	if (flags & ~valid_flags)
		return -EINVAL;
	hu->hdev_flags = flags;
	return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Marcel Holtmann | 69 | 100.00% | 3 | 100.00% | 
| Total | 69 | 100.00% | 3 | 100.00% | 
/* hci_uart_tty_ioctl()
 *
 *    Process IOCTL system call for the tty device.
 *
 * Arguments:
 *
 *    tty        pointer to tty instance data
 *    file       pointer to open file object for device
 *    cmd        IOCTL command code
 *    arg        argument for IOCTL call (cmd dependent)
 *
 * Return Value:    Command dependent
 */
static int hci_uart_tty_ioctl(struct tty_struct *tty, struct file *file,
			      unsigned int cmd, unsigned long arg)
{
	struct hci_uart *hu = tty->disc_data;
	int err = 0;
	BT_DBG("");
	/* Verify the status of the device */
	if (!hu)
		return -EBADF;
	switch (cmd) {
	case HCIUARTSETPROTO:
		if (!test_and_set_bit(HCI_UART_PROTO_SET, &hu->flags)) {
			err = hci_uart_set_proto(hu, arg);
			if (err)
				clear_bit(HCI_UART_PROTO_SET, &hu->flags);
		} else
			err = -EBUSY;
		break;
	case HCIUARTGETPROTO:
		if (test_bit(HCI_UART_PROTO_SET, &hu->flags))
			err = hu->proto->id;
		else
			err = -EUNATCH;
		break;
	case HCIUARTGETDEVICE:
		if (test_bit(HCI_UART_REGISTERED, &hu->flags))
			err = hu->hdev->id;
		else
			err = -EUNATCH;
		break;
	case HCIUARTSETFLAGS:
		if (test_bit(HCI_UART_PROTO_SET, &hu->flags))
			err = -EBUSY;
		else
			err = hci_uart_set_flags(hu, arg);
		break;
	case HCIUARTGETFLAGS:
		err = hu->hdev_flags;
		break;
	default:
		err = n_tty_ioctl_helper(tty, file, cmd, arg);
		break;
	}
	return err;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Maksim Krasnyanskiy | 76 | 33.63% | 2 | 20.00% | 
| Linus Torvalds | 66 | 29.20% | 1 | 10.00% | 
| Marcel Holtmann | 29 | 12.83% | 4 | 40.00% | 
| Johan Hedberg | 27 | 11.95% | 1 | 10.00% | 
| Vignesh Raman | 27 | 11.95% | 1 | 10.00% | 
| Alan Cox | 1 | 0.44% | 1 | 10.00% | 
| Total | 226 | 100.00% | 10 | 100.00% | 
/*
 * We don't provide read/write/poll interface for user space.
 */
static ssize_t hci_uart_tty_read(struct tty_struct *tty, struct file *file,
				 unsigned char __user *buf, size_t nr)
{
	return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Linus Torvalds | 26 | 92.86% | 1 | 33.33% | 
| Maksim Krasnyanskiy | 1 | 3.57% | 1 | 33.33% | 
| Al Viro | 1 | 3.57% | 1 | 33.33% | 
| Total | 28 | 100.00% | 3 | 100.00% | 
static ssize_t hci_uart_tty_write(struct tty_struct *tty, struct file *file,
				  const unsigned char *data, size_t count)
{
	return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Linus Torvalds | 27 | 96.43% | 1 | 50.00% | 
| Maksim Krasnyanskiy | 1 | 3.57% | 1 | 50.00% | 
| Total | 28 | 100.00% | 2 | 100.00% | 
static unsigned int hci_uart_tty_poll(struct tty_struct *tty,
				      struct file *filp, poll_table *wait)
{
	return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Linus Torvalds | 23 | 95.83% | 1 | 50.00% | 
| Maksim Krasnyanskiy | 1 | 4.17% | 1 | 50.00% | 
| Total | 24 | 100.00% | 2 | 100.00% | 
static int __init hci_uart_init(void)
{
	static struct tty_ldisc_ops hci_uart_ldisc;
	int err;
	BT_INFO("HCI UART driver ver %s", VERSION);
	/* Register the tty discipline */
	memset(&hci_uart_ldisc, 0, sizeof(hci_uart_ldisc));
	hci_uart_ldisc.magic		= TTY_LDISC_MAGIC;
	hci_uart_ldisc.name		= "n_hci";
	hci_uart_ldisc.open		= hci_uart_tty_open;
	hci_uart_ldisc.close		= hci_uart_tty_close;
	hci_uart_ldisc.read		= hci_uart_tty_read;
	hci_uart_ldisc.write		= hci_uart_tty_write;
	hci_uart_ldisc.ioctl		= hci_uart_tty_ioctl;
	hci_uart_ldisc.poll		= hci_uart_tty_poll;
	hci_uart_ldisc.receive_buf	= hci_uart_tty_receive;
	hci_uart_ldisc.write_wakeup	= hci_uart_tty_wakeup;
	hci_uart_ldisc.owner		= THIS_MODULE;
	err = tty_register_ldisc(N_HCI, &hci_uart_ldisc);
	if (err) {
		BT_ERR("HCI line discipline registration failed. (%d)", err);
		return err;
	}
#ifdef CONFIG_BT_HCIUART_H4
	h4_init();
#endif
#ifdef CONFIG_BT_HCIUART_BCSP
	bcsp_init();
#endif
#ifdef CONFIG_BT_HCIUART_LL
	ll_init();
#endif
#ifdef CONFIG_BT_HCIUART_ATH3K
	ath_init();
#endif
#ifdef CONFIG_BT_HCIUART_3WIRE
	h5_init();
#endif
#ifdef CONFIG_BT_HCIUART_INTEL
	intel_init();
#endif
#ifdef CONFIG_BT_HCIUART_BCM
	bcm_init();
#endif
#ifdef CONFIG_BT_HCIUART_QCA
	qca_init();
#endif
#ifdef CONFIG_BT_HCIUART_AG6XX
	ag6xx_init();
#endif
#ifdef CONFIG_BT_HCIUART_MRVL
	mrvl_init();
#endif
	return 0;
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Linus Torvalds | 94 | 44.13% | 2 | 11.11% | 
| Maksim Krasnyanskiy | 49 | 23.00% | 5 | 27.78% | 
| Loic Poulain | 24 | 11.27% | 3 | 16.67% | 
| Marcel Holtmann | 9 | 4.23% | 2 | 11.11% | 
| Johan Hedberg | 8 | 3.76% | 1 | 5.56% | 
| Ben Young Tae Kim | 8 | 3.76% | 1 | 5.56% | 
| Suraj Sumangala | 8 | 3.76% | 1 | 5.56% | 
| Ohad Ben-Cohen | 8 | 3.76% | 1 | 5.56% | 
| Valentin Ilie | 4 | 1.88% | 1 | 5.56% | 
| Alan Cox | 1 | 0.47% | 1 | 5.56% | 
| Total | 213 | 100.00% | 18 | 100.00% | 
static void __exit hci_uart_exit(void)
{
	int err;
#ifdef CONFIG_BT_HCIUART_H4
	h4_deinit();
#endif
#ifdef CONFIG_BT_HCIUART_BCSP
	bcsp_deinit();
#endif
#ifdef CONFIG_BT_HCIUART_LL
	ll_deinit();
#endif
#ifdef CONFIG_BT_HCIUART_ATH3K
	ath_deinit();
#endif
#ifdef CONFIG_BT_HCIUART_3WIRE
	h5_deinit();
#endif
#ifdef CONFIG_BT_HCIUART_INTEL
	intel_deinit();
#endif
#ifdef CONFIG_BT_HCIUART_BCM
	bcm_deinit();
#endif
#ifdef CONFIG_BT_HCIUART_QCA
	qca_deinit();
#endif
#ifdef CONFIG_BT_HCIUART_AG6XX
	ag6xx_deinit();
#endif
#ifdef CONFIG_BT_HCIUART_MRVL
	mrvl_deinit();
#endif
	/* Release tty registration of line discipline */
	err = tty_unregister_ldisc(N_HCI);
	if (err)
		BT_ERR("Can't unregister HCI line discipline (%d)", err);
}
Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Loic Poulain | 24 | 21.62% | 3 | 20.00% | 
| Linus Torvalds | 22 | 19.82% | 1 | 6.67% | 
| Maksim Krasnyanskiy | 17 | 15.32% | 3 | 20.00% | 
| Marcel Holtmann | 11 | 9.91% | 2 | 13.33% | 
| Johan Hedberg | 8 | 7.21% | 1 | 6.67% | 
| Ohad Ben-Cohen | 8 | 7.21% | 1 | 6.67% | 
| Suraj Sumangala | 8 | 7.21% | 1 | 6.67% | 
| Ben Young Tae Kim | 8 | 7.21% | 1 | 6.67% | 
| Valentin Ilie | 4 | 3.60% | 1 | 6.67% | 
| Alexey Dobriyan | 1 | 0.90% | 1 | 6.67% | 
| Total | 111 | 100.00% | 15 | 100.00% | 
module_init(hci_uart_init);
module_exit(hci_uart_exit);
MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
MODULE_DESCRIPTION("Bluetooth HCI UART driver ver " VERSION);
MODULE_VERSION(VERSION);
MODULE_LICENSE("GPL");
MODULE_ALIAS_LDISC(N_HCI);
Overall Contributors
| Person | Tokens | Prop | Commits | CommitProp | 
| Maksim Krasnyanskiy | 830 | 25.44% | 6 | 6.45% | 
| Linus Torvalds | 708 | 21.70% | 4 | 4.30% | 
| Marcel Holtmann | 456 | 13.97% | 31 | 33.33% | 
| Ilya Faenson | 430 | 13.18% | 1 | 1.08% | 
| Johan Hedberg | 251 | 7.69% | 4 | 4.30% | 
| Loic Poulain | 130 | 3.98% | 5 | 5.38% | 
| Frederic Danis | 105 | 3.22% | 4 | 4.30% | 
| Felipe Balbi | 79 | 2.42% | 1 | 1.08% | 
| Dean Jenkins | 78 | 2.39% | 6 | 6.45% | 
| Alan Cox | 28 | 0.86% | 7 | 7.53% | 
| Vignesh Raman | 27 | 0.83% | 1 | 1.08% | 
| Sebastian Reichel | 18 | 0.55% | 2 | 2.15% | 
| Ben Young Tae Kim | 16 | 0.49% | 1 | 1.08% | 
| Suraj Sumangala | 16 | 0.49% | 1 | 1.08% | 
| David Herrmann | 16 | 0.49% | 3 | 3.23% | 
| Ohad Ben-Cohen | 16 | 0.49% | 1 | 1.08% | 
| Valentin Ilie | 13 | 0.40% | 1 | 1.08% | 
| Johan Hovold | 9 | 0.28% | 1 | 1.08% | 
| Chan-yeol Park | 8 | 0.25% | 2 | 2.15% | 
| Andrei Warkentin | 6 | 0.18% | 1 | 1.08% | 
| David Newall | 6 | 0.18% | 1 | 1.08% | 
| Jun Nie | 5 | 0.15% | 1 | 1.08% | 
| Andrew Morton | 5 | 0.15% | 1 | 1.08% | 
| Al Viro | 2 | 0.06% | 2 | 2.15% | 
| Peter Hurley | 1 | 0.03% | 1 | 1.08% | 
| Karl Beldan | 1 | 0.03% | 1 | 1.08% | 
| Deepak Saxena | 1 | 0.03% | 1 | 1.08% | 
| Szymon Janc | 1 | 0.03% | 1 | 1.08% | 
| Alexey Dobriyan | 1 | 0.03% | 1 | 1.08% | 
| Total | 3263 | 100.00% | 93 | 100.00% | 
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.